All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH dev-5.4] peci: fix license identifier
@ 2020-02-11 22:43 Jae Hyun Yoo
  2020-02-11 22:52 ` Joel Stanley
  0 siblings, 1 reply; 3+ messages in thread
From: Jae Hyun Yoo @ 2020-02-11 22:43 UTC (permalink / raw)
  To: Joel Stanley, Andrew Jeffery; +Cc: openbmc, Jae Hyun Yoo

This commit fixes license identifier to prevent an error while
doing 'make headers_install' that says:
error: include/uapi/linux/peci-ioctl.h: missing "WITH Linux-syscall-note" for SPDX-License-Identifier

Reported-by: Tao Ren <rentao.bupt@gmail.com>
Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
---
 include/uapi/linux/peci-ioctl.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/uapi/linux/peci-ioctl.h b/include/uapi/linux/peci-ioctl.h
index 843930f9fedd..c74b3cde52e8 100644
--- a/include/uapi/linux/peci-ioctl.h
+++ b/include/uapi/linux/peci-ioctl.h
@@ -1,5 +1,5 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-/* Copyright (c) 2018-2019 Intel Corporation */
+/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
+/* Copyright (c) 2018-2020 Intel Corporation */
 
 #ifndef __PECI_IOCTL_H
 #define __PECI_IOCTL_H
-- 
2.17.1

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

* Re: [PATCH dev-5.4] peci: fix license identifier
  2020-02-11 22:43 [PATCH dev-5.4] peci: fix license identifier Jae Hyun Yoo
@ 2020-02-11 22:52 ` Joel Stanley
  2020-02-11 22:56   ` Jae Hyun Yoo
  0 siblings, 1 reply; 3+ messages in thread
From: Joel Stanley @ 2020-02-11 22:52 UTC (permalink / raw)
  To: Jae Hyun Yoo; +Cc: Andrew Jeffery, OpenBMC Maillist

On Tue, 11 Feb 2020 at 22:41, Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> wrote:
>
> This commit fixes license identifier to prevent an error while
> doing 'make headers_install' that says:
> error: include/uapi/linux/peci-ioctl.h: missing "WITH Linux-syscall-note" for SPDX-License-Identifier
>
> Reported-by: Tao Ren <rentao.bupt@gmail.com>
> Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>

Thakns for the patch.

How's the upstream submission of PECI going?

> ---
>  include/uapi/linux/peci-ioctl.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/uapi/linux/peci-ioctl.h b/include/uapi/linux/peci-ioctl.h
> index 843930f9fedd..c74b3cde52e8 100644
> --- a/include/uapi/linux/peci-ioctl.h
> +++ b/include/uapi/linux/peci-ioctl.h
> @@ -1,5 +1,5 @@
> -/* SPDX-License-Identifier: GPL-2.0 */
> -/* Copyright (c) 2018-2019 Intel Corporation */
> +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
> +/* Copyright (c) 2018-2020 Intel Corporation */
>
>  #ifndef __PECI_IOCTL_H
>  #define __PECI_IOCTL_H
> --
> 2.17.1
>

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

* Re: [PATCH dev-5.4] peci: fix license identifier
  2020-02-11 22:52 ` Joel Stanley
@ 2020-02-11 22:56   ` Jae Hyun Yoo
  0 siblings, 0 replies; 3+ messages in thread
From: Jae Hyun Yoo @ 2020-02-11 22:56 UTC (permalink / raw)
  To: Joel Stanley; +Cc: Andrew Jeffery, OpenBMC Maillist

On 2/11/2020 2:52 PM, Joel Stanley wrote:
> On Tue, 11 Feb 2020 at 22:41, Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> wrote:
>>
>> This commit fixes license identifier to prevent an error while
>> doing 'make headers_install' that says:
>> error: include/uapi/linux/peci-ioctl.h: missing "WITH Linux-syscall-note" for SPDX-License-Identifier
>>
>> Reported-by: Tao Ren <rentao.bupt@gmail.com>
>> Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
> 
> Thakns for the patch.
> 
> How's the upstream submission of PECI going?

I'm still trying. I'll update you if any progress.

Thanks,

Jae

>> ---
>>   include/uapi/linux/peci-ioctl.h | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/include/uapi/linux/peci-ioctl.h b/include/uapi/linux/peci-ioctl.h
>> index 843930f9fedd..c74b3cde52e8 100644
>> --- a/include/uapi/linux/peci-ioctl.h
>> +++ b/include/uapi/linux/peci-ioctl.h
>> @@ -1,5 +1,5 @@
>> -/* SPDX-License-Identifier: GPL-2.0 */
>> -/* Copyright (c) 2018-2019 Intel Corporation */
>> +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
>> +/* Copyright (c) 2018-2020 Intel Corporation */
>>
>>   #ifndef __PECI_IOCTL_H
>>   #define __PECI_IOCTL_H
>> --
>> 2.17.1
>>

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

end of thread, other threads:[~2020-02-11 22:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-11 22:43 [PATCH dev-5.4] peci: fix license identifier Jae Hyun Yoo
2020-02-11 22:52 ` Joel Stanley
2020-02-11 22:56   ` Jae Hyun Yoo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.