netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: dsa: b53: Use the correct style for SPDX License Identifier
@ 2019-09-21 13:30 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:30 UTC (permalink / raw)
  To: 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 Broadcom BCM53xx managed switch driver.
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/b53/b53_serdes.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/dsa/b53/b53_serdes.h b/drivers/net/dsa/b53/b53_serdes.h
index 3bb4f91aec9e..55d280fe38e4 100644
--- a/drivers/net/dsa/b53/b53_serdes.h
+++ b/drivers/net/dsa/b53/b53_serdes.h
@@ -1,5 +1,5 @@
-/* SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause
- *
+/* SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause */
+/*
  * Northstar Plus switch SerDes/SGMII PHY definitions
  *
  * Copyright (C) 2018 Florian Fainelli <f.fainelli@gmail.com>
-- 
2.17.1


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

* Re: [PATCH] net: dsa: b53: Use the correct style for SPDX License Identifier
  2019-09-21 13:30 [PATCH] net: dsa: b53: 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:26 ` 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: 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:00:16 +0530, Nishad Kamdar <nishadkamdar@gmail.com> wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Broadcom BCM53xx managed switch driver.
> 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: b53: Use the correct style for SPDX License Identifier
  2019-09-21 13:30 [PATCH] net: dsa: b53: 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:26 ` Jakub Kicinski
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2019-09-21 19:39 UTC (permalink / raw)
  To: Nishad Kamdar, 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:30 AM, Nishad Kamdar wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Broadcom BCM53xx managed switch driver.
> 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: b53: Use the correct style for SPDX License Identifier
  2019-09-21 13:30 [PATCH] net: dsa: b53: 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:26 ` Jakub Kicinski
  2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2019-09-22 22:26 UTC (permalink / raw)
  To: Nishad Kamdar
  Cc: 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:00:16 +0530, Nishad Kamdar wrote:
> This patch corrects the SPDX License Identifier style
> in header file for Broadcom BCM53xx managed switch driver.
> 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:26 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:30 [PATCH] net: dsa: b53: 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:26 ` 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).