linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] power: reset: hisi-reboot: use the correct HiSilicon copyright
@ 2021-03-30  6:38 Hao Fang
  2021-03-30  8:40 ` Haojian Zhuang
  0 siblings, 1 reply; 3+ messages in thread
From: Hao Fang @ 2021-03-30  6:38 UTC (permalink / raw)
  To: sre, haojian.zhuang, xuwei5; +Cc: linux-pm, linux-kernel, prime.zeng, fanghao11

s/Hisilicon/HiSilicon/g.
It should use capital S, according to
https://www.hisilicon.com/en/terms-of-use.

Signed-off-by: Hao Fang <fanghao11@huawei.com>
---
 drivers/power/reset/hisi-reboot.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/power/reset/hisi-reboot.c b/drivers/power/reset/hisi-reboot.c
index 0ba5fdc..5abc5f6 100644
--- a/drivers/power/reset/hisi-reboot.c
+++ b/drivers/power/reset/hisi-reboot.c
@@ -1,8 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
- * Hisilicon SoC reset code
+ * HiSilicon SoC reset code
  *
- * Copyright (c) 2014 Hisilicon Ltd.
+ * Copyright (c) 2014 HiSilicon Ltd.
  * Copyright (c) 2014 Linaro Ltd.
  *
  * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] power: reset: hisi-reboot: use the correct HiSilicon copyright
  2021-03-30  6:38 [PATCH] power: reset: hisi-reboot: use the correct HiSilicon copyright Hao Fang
@ 2021-03-30  8:40 ` Haojian Zhuang
  2021-04-02 11:59   ` sre@kernel.org
  0 siblings, 1 reply; 3+ messages in thread
From: Haojian Zhuang @ 2021-03-30  8:40 UTC (permalink / raw)
  To: Hao Fang, sre, xuwei5; +Cc: linux-pm, linux-kernel, prime.zeng

On 3/30/21 2:38 PM, Hao Fang wrote:
> s/Hisilicon/HiSilicon/g.
> It should use capital S, according to
> https://www.hisilicon.com/en/terms-of-use.
> 
> Signed-off-by: Hao Fang <fanghao11@huawei.com>
> ---
>   drivers/power/reset/hisi-reboot.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/power/reset/hisi-reboot.c b/drivers/power/reset/hisi-reboot.c
> index 0ba5fdc..5abc5f6 100644
> --- a/drivers/power/reset/hisi-reboot.c
> +++ b/drivers/power/reset/hisi-reboot.c
> @@ -1,8 +1,8 @@
>   // SPDX-License-Identifier: GPL-2.0-only
>   /*
> - * Hisilicon SoC reset code
> + * HiSilicon SoC reset code
>    *
> - * Copyright (c) 2014 Hisilicon Ltd.
> + * Copyright (c) 2014 HiSilicon Ltd.
>    * Copyright (c) 2014 Linaro Ltd.
>    *
>    * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
> 

Acked-by: Haojian Zhuang <haojian.zhuang@linaro.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] power: reset: hisi-reboot: use the correct HiSilicon copyright
  2021-03-30  8:40 ` Haojian Zhuang
@ 2021-04-02 11:59   ` sre@kernel.org
  0 siblings, 0 replies; 3+ messages in thread
From: sre@kernel.org @ 2021-04-02 11:59 UTC (permalink / raw)
  To: haojian.zhuang; +Cc: Hao Fang, xuwei5, linux-pm, linux-kernel, prime.zeng

[-- Attachment #1: Type: text/plain, Size: 1079 bytes --]

Hi,

On Tue, Mar 30, 2021 at 08:40:48AM +0000, Haojian Zhuang wrote:
> On 3/30/21 2:38 PM, Hao Fang wrote:
> > s/Hisilicon/HiSilicon/g.
> > It should use capital S, according to
> > https://www.hisilicon.com/en/terms-of-use.
> > 
> > Signed-off-by: Hao Fang <fanghao11@huawei.com>
> > ---
> >   drivers/power/reset/hisi-reboot.c | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/power/reset/hisi-reboot.c b/drivers/power/reset/hisi-reboot.c
> > index 0ba5fdc..5abc5f6 100644
> > --- a/drivers/power/reset/hisi-reboot.c
> > +++ b/drivers/power/reset/hisi-reboot.c
> > @@ -1,8 +1,8 @@
> >   // SPDX-License-Identifier: GPL-2.0-only
> >   /*
> > - * Hisilicon SoC reset code
> > + * HiSilicon SoC reset code
> >    *
> > - * Copyright (c) 2014 Hisilicon Ltd.
> > + * Copyright (c) 2014 HiSilicon Ltd.
> >    * Copyright (c) 2014 Linaro Ltd.
> >    *
> >    * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
> > 
> 
> Acked-by: Haojian Zhuang <haojian.zhuang@linaro.org>

Thanks, queued.

-- Sebastian

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-02 11:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-30  6:38 [PATCH] power: reset: hisi-reboot: use the correct HiSilicon copyright Hao Fang
2021-03-30  8:40 ` Haojian Zhuang
2021-04-02 11:59   ` sre@kernel.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).