netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: dsa: Use the correct style for SPDX License Identifier
@ 2019-09-21 13:45 Nishad Kamdar
  2019-09-21 16:01 ` Vivien Didelot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Nishad Kamdar @ 2019-09-21 13:45 UTC (permalink / raw)
  To: Hauke Mehrtens, Florian Fainelli, Andrew Lunn, Vivien Didelot,
	David S. Miller, Greg Kroah-Hartman, Joe Perches,
	Uwe Kleine-König
  Cc: netdev, linux-kernel

This patch corrects the SPDX License Identifier style
in header file for Distributed Switch Architecture drivers.
For C header files Documentation/process/license-rules.rst
mandates C-like comments (opposed to C source files where
C++ style should be used)

Changes made by using a script provided by Joe Perches here:
https://lkml.org/lkml/2019/2/7/46.

Suggested-by: Joe Perches <joe@perches.com>
Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com>
---
 drivers/net/dsa/lantiq_pce.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dsa/lantiq_pce.h b/drivers/net/dsa/lantiq_pce.h
index 180663138e75..e2be31f3672a 100644
--- a/drivers/net/dsa/lantiq_pce.h
+++ b/drivers/net/dsa/lantiq_pce.h
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+/* SPDX-License-Identifier: GPL-2.0 */
 /*
  * PCE microcode extracted from UGW 7.1.1 switch api
  *
-- 
2.17.1


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

* Re: [PATCH] net: dsa: Use the correct style for SPDX License Identifier
  2019-09-21 13:45 [PATCH] net: dsa: Use the correct style for SPDX License Identifier Nishad Kamdar
@ 2019-09-21 16:01 ` Vivien Didelot
  2019-09-21 19:39 ` Florian Fainelli
  2019-09-22 22:27 ` Jakub Kicinski
  2 siblings, 0 replies; 4+ messages in thread
From: Vivien Didelot @ 2019-09-21 16:01 UTC (permalink / raw)
  To: Nishad Kamdar
  Cc: Hauke Mehrtens, Florian Fainelli, Andrew Lunn, David S. Miller,
	Greg Kroah-Hartman, Joe Perches, Uwe Kleine-König, netdev,
	linux-kernel

On Sat, 21 Sep 2019 19:15:25 +0530, Nishad Kamdar <nishadkamdar@gmail.com> wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Distributed Switch Architecture drivers.
> For C header files Documentation/process/license-rules.rst
> mandates C-like comments (opposed to C source files where
> C++ style should be used)
> 
> Changes made by using a script provided by Joe Perches here:
> https://lkml.org/lkml/2019/2/7/46.
> 
> Suggested-by: Joe Perches <joe@perches.com>
> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com>

Reviewed-by: Vivien Didelot <vivien.didelot@gmail.com>

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

* Re: [PATCH] net: dsa: Use the correct style for SPDX License Identifier
  2019-09-21 13:45 [PATCH] net: dsa: Use the correct style for SPDX License Identifier Nishad Kamdar
  2019-09-21 16:01 ` Vivien Didelot
@ 2019-09-21 19:39 ` Florian Fainelli
  2019-09-22 22:27 ` Jakub Kicinski
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-09-21 19:39 UTC (permalink / raw)
  To: Nishad Kamdar, Hauke Mehrtens, Andrew Lunn, Vivien Didelot,
	David S. Miller, Greg Kroah-Hartman, Joe Perches,
	Uwe Kleine-König
  Cc: netdev, linux-kernel



On 9/21/2019 6:45 AM, Nishad Kamdar wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Distributed Switch Architecture drivers.
> For C header files Documentation/process/license-rules.rst
> mandates C-like comments (opposed to C source files where
> C++ style should be used)
> 
> Changes made by using a script provided by Joe Perches here:
> https://lkml.org/lkml/2019/2/7/46.
> 
> Suggested-by: Joe Perches <joe@perches.com>
> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian

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

* Re: [PATCH] net: dsa: Use the correct style for SPDX License Identifier
  2019-09-21 13:45 [PATCH] net: dsa: Use the correct style for SPDX License Identifier Nishad Kamdar
  2019-09-21 16:01 ` Vivien Didelot
  2019-09-21 19:39 ` Florian Fainelli
@ 2019-09-22 22:27 ` Jakub Kicinski
  2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2019-09-22 22:27 UTC (permalink / raw)
  To: Nishad Kamdar
  Cc: Hauke Mehrtens, Florian Fainelli, Andrew Lunn, Vivien Didelot,
	David S. Miller, Greg Kroah-Hartman, Joe Perches,
	Uwe Kleine-König, netdev, linux-kernel

On Sat, 21 Sep 2019 19:15:25 +0530, Nishad Kamdar wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Distributed Switch Architecture drivers.
> For C header files Documentation/process/license-rules.rst
> mandates C-like comments (opposed to C source files where
> C++ style should be used)
> 
> Changes made by using a script provided by Joe Perches here:
> https://lkml.org/lkml/2019/2/7/46.
> 
> Suggested-by: Joe Perches <joe@perches.com>
> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com>

Applied, thank you!

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

end of thread, other threads:[~2019-09-22 22:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-21 13:45 [PATCH] net: dsa: Use the correct style for SPDX License Identifier Nishad Kamdar
2019-09-21 16:01 ` Vivien Didelot
2019-09-21 19:39 ` Florian Fainelli
2019-09-22 22:27 ` Jakub Kicinski

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).