All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/4] Fix malformed SPDX-License-Identifier
@ 2019-03-08  3:10 Wentao Cai
  2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
  2019-03-08  7:05 ` [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Greg KH
  0 siblings, 2 replies; 9+ messages in thread
From: Wentao Cai @ 2019-03-08  3:10 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Wentao Cai

Fix SPDX-License-Identifier in drivers/staging/most/dim2/

Wentao Cai (4):
  Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  Staging: most: dim2: Fix SPDX-License-Identifier in hal.h
  Staging: most: dim2: Fix SPDX-License-Identifier in sysfs.h
  Staging: most: dim2: Fix SPDX-License-Identifier in reg.h

 drivers/staging/most/dim2/errors.h | 2 +-
 drivers/staging/most/dim2/hal.h    | 2 +-
 drivers/staging/most/dim2/reg.h    | 2 +-
 drivers/staging/most/dim2/sysfs.h  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

-- 
2.11.0



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

* [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  3:10 [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Wentao Cai
@ 2019-03-08  3:10 ` Wentao Cai
  2019-03-08  4:30   ` etsai042
                     ` (2 more replies)
  2019-03-08  7:05 ` [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Greg KH
  1 sibling, 3 replies; 9+ messages in thread
From: Wentao Cai @ 2019-03-08  3:10 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel, Wentao Cai

Fix the checkpatch.pl warning in drivers/staging/most/dim2/errors.h:
WARNING: Missing or malformed SPDX-License-Identifier tag in line 1

Signed-off-by: Wentao Cai <etsai042@gmail.com>
---
 drivers/staging/most/dim2/errors.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/most/dim2/errors.h b/drivers/staging/most/dim2/errors.h
index 3487510fbd2f..cbbdaaf5c52d 100644
--- a/drivers/staging/most/dim2/errors.h
+++ b/drivers/staging/most/dim2/errors.h
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * errors.h - Definitions of errors for DIM2 HAL API
  * (MediaLB, Device Interface Macro IP, OS62420)
-- 
2.11.0



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

* Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
@ 2019-03-08  4:30   ` etsai042
  2019-03-08  7:29     ` [Outreachy kernel] " Julia Lawall
  2019-03-08  7:04   ` Greg KH
  2019-03-08  7:06   ` Greg KH
  2 siblings, 1 reply; 9+ messages in thread
From: etsai042 @ 2019-03-08  4:30 UTC (permalink / raw)
  To: outreachy-kernel


[-- Attachment #1.1: Type: text/plain, Size: 56 bytes --]

Sorry to mess up patch version, I'll revise it.

Wentao

[-- Attachment #1.2: Type: text/html, Size: 104 bytes --]

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

* Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
  2019-03-08  4:30   ` etsai042
@ 2019-03-08  7:04   ` Greg KH
  2019-03-09  6:57     ` etsai042
  2019-03-08  7:06   ` Greg KH
  2 siblings, 1 reply; 9+ messages in thread
From: Greg KH @ 2019-03-08  7:04 UTC (permalink / raw)
  To: Wentao Cai; +Cc: outreachy-kernel

On Thu, Mar 07, 2019 at 07:10:10PM -0800, Wentao Cai wrote:
> Fix the checkpatch.pl warning in drivers/staging/most/dim2/errors.h:
> WARNING: Missing or malformed SPDX-License-Identifier tag in line 1
> 
> Signed-off-by: Wentao Cai <etsai042@gmail.com>
> ---
>  drivers/staging/most/dim2/errors.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/most/dim2/errors.h b/drivers/staging/most/dim2/errors.h
> index 3487510fbd2f..cbbdaaf5c52d 100644
> --- a/drivers/staging/most/dim2/errors.h
> +++ b/drivers/staging/most/dim2/errors.h
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0
> +/* SPDX-License-Identifier: GPL-2.0+ */

You just changed the license of the file, not good at all :(

Don't do this unless you _really_ like talking to lawyers...

thanks,

greg k-h


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

* Re: [PATCH v3 0/4] Fix malformed SPDX-License-Identifier
  2019-03-08  3:10 [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Wentao Cai
  2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
@ 2019-03-08  7:05 ` Greg KH
  1 sibling, 0 replies; 9+ messages in thread
From: Greg KH @ 2019-03-08  7:05 UTC (permalink / raw)
  To: Wentao Cai; +Cc: outreachy-kernel

On Thu, Mar 07, 2019 at 07:10:09PM -0800, Wentao Cai wrote:
> Fix SPDX-License-Identifier in drivers/staging/most/dim2/
> 
> Wentao Cai (4):
>   Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
>   Staging: most: dim2: Fix SPDX-License-Identifier in hal.h
>   Staging: most: dim2: Fix SPDX-License-Identifier in sysfs.h
>   Staging: most: dim2: Fix SPDX-License-Identifier in reg.h

Usually it is easier to put the filename at the beginning of the line,
not at the end, so this would look like:

Staging: most: dim2: errors.h:Fix SPDX-License-Identifier
Staging: most: dim2: hal.h: Fix SPDX-License-Identifier
Staging: most: dim2: sysfs.h: Fix SPDX-License-Identifier
Staging: most: dim2: reg.h: Fix SPDX-License-Identifier

But, note, your text here is not correct, I'll say more about that in
your first patch...

> 
>  drivers/staging/most/dim2/errors.h | 2 +-
>  drivers/staging/most/dim2/hal.h    | 2 +-
>  drivers/staging/most/dim2/reg.h    | 2 +-
>  drivers/staging/most/dim2/sysfs.h  | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)

Please use git send-email to properly "thread" your patches the next
time you resend this series.

thanks,

greg k-h


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

* Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
  2019-03-08  4:30   ` etsai042
  2019-03-08  7:04   ` Greg KH
@ 2019-03-08  7:06   ` Greg KH
  2 siblings, 0 replies; 9+ messages in thread
From: Greg KH @ 2019-03-08  7:06 UTC (permalink / raw)
  To: Wentao Cai; +Cc: outreachy-kernel

On Thu, Mar 07, 2019 at 07:10:10PM -0800, Wentao Cai wrote:
> Fix the checkpatch.pl warning in drivers/staging/most/dim2/errors.h:
> WARNING: Missing or malformed SPDX-License-Identifier tag in line 1

You are not "fixing" the identifier so much as using the "correct"
comment characters.  The identifier text itself is correct and nothing
needs to be "fixed" in it.

thanks,

greg k-h


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

* Re: [Outreachy kernel] Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  4:30   ` etsai042
@ 2019-03-08  7:29     ` Julia Lawall
  2019-03-09  7:01       ` etsai042
  0 siblings, 1 reply; 9+ messages in thread
From: Julia Lawall @ 2019-03-08  7:29 UTC (permalink / raw)
  To: etsai042; +Cc: outreachy-kernel



On Thu, 7 Mar 2019, etsai042@gmail.com wrote:

> Sorry to mess up patch version, I'll revise it.

It's nice to quote what you are responding to, so the reader has some
context beyond the subject line.  Just to remember for next time.

julia

> Wentao
>
> --
> You received this message because you are subscribed to the Google Groups
> "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visithttps://groups.google.com/d/msgid/outreachy-kernel/8d797e93-e9be-4122-b9a7-
> 5baa4d41ccf2%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>


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

* Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  7:04   ` Greg KH
@ 2019-03-09  6:57     ` etsai042
  0 siblings, 0 replies; 9+ messages in thread
From: etsai042 @ 2019-03-09  6:57 UTC (permalink / raw)
  To: outreachy-kernel


[-- Attachment #1.1: Type: text/plain, Size: 285 bytes --]



On Thursday, March 7, 2019 at 11:04:04 PM UTC-8, gregkh wrote:
>
>
> > You just changed the license of the file, not good at all :( 
>
> > Don't do this unless you _really_ like talking to lawyers... 
>
> > thanks, 
>
> > greg k-h 
>

Sorry, I'll revise it in next version.

Wentao 

[-- Attachment #1.2: Type: text/html, Size: 527 bytes --]

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

* Re: [Outreachy kernel] Re: [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h
  2019-03-08  7:29     ` [Outreachy kernel] " Julia Lawall
@ 2019-03-09  7:01       ` etsai042
  0 siblings, 0 replies; 9+ messages in thread
From: etsai042 @ 2019-03-09  7:01 UTC (permalink / raw)
  To: outreachy-kernel


[-- Attachment #1.1: Type: text/plain, Size: 280 bytes --]


On Thursday, March 7, 2019 at 11:29:02 PM UTC-8, Julia Lawall wrote:

> It's nice to quote what you are responding to, so the reader has some 
> context beyond the subject line.  Just to remember for next time. 
> 
> julia 

Thanks Julia! I'll be more careful next time!

Wentao

[-- Attachment #1.2: Type: text/html, Size: 673 bytes --]

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

end of thread, other threads:[~2019-03-09  7:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-08  3:10 [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Wentao Cai
2019-03-08  3:10 ` [PATCH v3 1/4] Staging: most: dim2: Fix SPDX-License-Identifier in errors.h Wentao Cai
2019-03-08  4:30   ` etsai042
2019-03-08  7:29     ` [Outreachy kernel] " Julia Lawall
2019-03-09  7:01       ` etsai042
2019-03-08  7:04   ` Greg KH
2019-03-09  6:57     ` etsai042
2019-03-08  7:06   ` Greg KH
2019-03-08  7:05 ` [PATCH v3 0/4] Fix malformed SPDX-License-Identifier Greg KH

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.