linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mfd: stm32: Adopt SPDX identifier
@ 2017-12-05 15:24 Benjamin Gaignard
  2017-12-05 17:23 ` [v2] " Guenter Roeck
  2017-12-07 10:36 ` [PATCH v2] " Lee Jones
  0 siblings, 2 replies; 5+ messages in thread
From: Benjamin Gaignard @ 2017-12-05 15:24 UTC (permalink / raw)
  To: lee.jones, alexandre.torgue
  Cc: linux-arm-kernel, linux-kernel, Benjamin Gaignard

Add SPDX identifier

Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
---
 drivers/mfd/stm32-lptimer.c       | 6 +-----
 drivers/mfd/stm32-timers.c        | 4 +---
 include/linux/mfd/stm32-lptimer.h | 6 +-----
 include/linux/mfd/stm32-timers.h  | 4 +---
 4 files changed, 4 insertions(+), 16 deletions(-)

diff --git a/drivers/mfd/stm32-lptimer.c b/drivers/mfd/stm32-lptimer.c
index 075330a25f61..a00f99f36559 100644
--- a/drivers/mfd/stm32-lptimer.c
+++ b/drivers/mfd/stm32-lptimer.c
@@ -1,13 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * STM32 Low-Power Timer parent driver.
- *
  * Copyright (C) STMicroelectronics 2017
- *
  * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
- *
  * Inspired by Benjamin Gaignard's stm32-timers driver
- *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #include <linux/mfd/stm32-lptimer.h>
diff --git a/drivers/mfd/stm32-timers.c b/drivers/mfd/stm32-timers.c
index a6675a449409..1d347e5dfa79 100644
--- a/drivers/mfd/stm32-timers.c
+++ b/drivers/mfd/stm32-timers.c
@@ -1,9 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Copyright (C) STMicroelectronics 2016
- *
  * Author: Benjamin Gaignard <benjamin.gaignard@st.com>
- *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #include <linux/mfd/stm32-timers.h>
diff --git a/include/linux/mfd/stm32-lptimer.h b/include/linux/mfd/stm32-lptimer.h
index 77c7cf40d9b4..605f62264825 100644
--- a/include/linux/mfd/stm32-lptimer.h
+++ b/include/linux/mfd/stm32-lptimer.h
@@ -1,13 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0 */
 /*
  * STM32 Low-Power Timer parent driver.
- *
  * Copyright (C) STMicroelectronics 2017
- *
  * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
- *
  * Inspired by Benjamin Gaignard's stm32-timers driver
- *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #ifndef _LINUX_STM32_LPTIMER_H_
diff --git a/include/linux/mfd/stm32-timers.h b/include/linux/mfd/stm32-timers.h
index ce7346e7f77a..2aadab6f34a1 100644
--- a/include/linux/mfd/stm32-timers.h
+++ b/include/linux/mfd/stm32-timers.h
@@ -1,9 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0 */
 /*
  * Copyright (C) STMicroelectronics 2016
- *
  * Author: Benjamin Gaignard <benjamin.gaignard@st.com>
- *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #ifndef _LINUX_STM32_GPTIMER_H_
-- 
2.15.0

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

* Re: [v2] mfd: stm32: Adopt SPDX identifier
  2017-12-05 15:24 [PATCH v2] mfd: stm32: Adopt SPDX identifier Benjamin Gaignard
@ 2017-12-05 17:23 ` Guenter Roeck
  2017-12-05 17:28   ` Greg KH
  2017-12-07 10:36 ` [PATCH v2] " Lee Jones
  1 sibling, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2017-12-05 17:23 UTC (permalink / raw)
  To: benjamin.gaignard
  Cc: lee.jones, alexandre.torgue, linux-arm-kernel, linux-kernel,
	Benjamin Gaignard

On Tue, Dec 05, 2017 at 04:24:18PM +0100, benjamin.gaignard@linaro.org wrote:
> Add SPDX identifier
> 
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
> ---
>  drivers/mfd/stm32-lptimer.c       | 6 +-----
>  drivers/mfd/stm32-timers.c        | 4 +---
>  include/linux/mfd/stm32-lptimer.h | 6 +-----
>  include/linux/mfd/stm32-timers.h  | 4 +---
>  4 files changed, 4 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/mfd/stm32-lptimer.c b/drivers/mfd/stm32-lptimer.c
> index 075330a25f61..a00f99f36559 100644
> --- a/drivers/mfd/stm32-lptimer.c
> +++ b/drivers/mfd/stm32-lptimer.c
> @@ -1,13 +1,9 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*

I have been wondering - why is the SPDX identifier for the most part added
as separate C++ comment at the beginning of the file, and not inline with
the rest of the top comments ?  SPDX doesn't mandate this - the examples
I can find on the SPDX web site all show it inline. Is there a special
Linux kernel convention ?

Thanks,
Guenter

>   * STM32 Low-Power Timer parent driver.
> - *
>   * Copyright (C) STMicroelectronics 2017
> - *
>   * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
> - *
>   * Inspired by Benjamin Gaignard's stm32-timers driver
> - *
> - * License terms:  GNU General Public License (GPL), version 2
>   */
>  
>  #include <linux/mfd/stm32-lptimer.h>
> diff --git a/drivers/mfd/stm32-timers.c b/drivers/mfd/stm32-timers.c
> index a6675a449409..1d347e5dfa79 100644
> --- a/drivers/mfd/stm32-timers.c
> +++ b/drivers/mfd/stm32-timers.c
> @@ -1,9 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Copyright (C) STMicroelectronics 2016
> - *
>   * Author: Benjamin Gaignard <benjamin.gaignard@st.com>
> - *
> - * License terms:  GNU General Public License (GPL), version 2
>   */
>  
>  #include <linux/mfd/stm32-timers.h>
> diff --git a/include/linux/mfd/stm32-lptimer.h b/include/linux/mfd/stm32-lptimer.h
> index 77c7cf40d9b4..605f62264825 100644
> --- a/include/linux/mfd/stm32-lptimer.h
> +++ b/include/linux/mfd/stm32-lptimer.h
> @@ -1,13 +1,9 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
>  /*
>   * STM32 Low-Power Timer parent driver.
> - *
>   * Copyright (C) STMicroelectronics 2017
> - *
>   * Author: Fabrice Gasnier <fabrice.gasnier@st.com>
> - *
>   * Inspired by Benjamin Gaignard's stm32-timers driver
> - *
> - * License terms:  GNU General Public License (GPL), version 2
>   */
>  
>  #ifndef _LINUX_STM32_LPTIMER_H_
> diff --git a/include/linux/mfd/stm32-timers.h b/include/linux/mfd/stm32-timers.h
> index ce7346e7f77a..2aadab6f34a1 100644
> --- a/include/linux/mfd/stm32-timers.h
> +++ b/include/linux/mfd/stm32-timers.h
> @@ -1,9 +1,7 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
>  /*
>   * Copyright (C) STMicroelectronics 2016
> - *
>   * Author: Benjamin Gaignard <benjamin.gaignard@st.com>
> - *
> - * License terms:  GNU General Public License (GPL), version 2
>   */
>  
>  #ifndef _LINUX_STM32_GPTIMER_H_

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

* Re: [v2] mfd: stm32: Adopt SPDX identifier
  2017-12-05 17:23 ` [v2] " Guenter Roeck
@ 2017-12-05 17:28   ` Greg KH
  2017-12-05 18:07     ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2017-12-05 17:28 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: benjamin.gaignard, lee.jones, alexandre.torgue, linux-arm-kernel,
	linux-kernel, Benjamin Gaignard

On Tue, Dec 05, 2017 at 09:23:37AM -0800, Guenter Roeck wrote:
> On Tue, Dec 05, 2017 at 04:24:18PM +0100, benjamin.gaignard@linaro.org wrote:
> > Add SPDX identifier
> > 
> > Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
> > ---
> >  drivers/mfd/stm32-lptimer.c       | 6 +-----
> >  drivers/mfd/stm32-timers.c        | 4 +---
> >  include/linux/mfd/stm32-lptimer.h | 6 +-----
> >  include/linux/mfd/stm32-timers.h  | 4 +---
> >  4 files changed, 4 insertions(+), 16 deletions(-)
> > 
> > diff --git a/drivers/mfd/stm32-lptimer.c b/drivers/mfd/stm32-lptimer.c
> > index 075330a25f61..a00f99f36559 100644
> > --- a/drivers/mfd/stm32-lptimer.c
> > +++ b/drivers/mfd/stm32-lptimer.c
> > @@ -1,13 +1,9 @@
> > +// SPDX-License-Identifier: GPL-2.0
> >  /*
> 
> I have been wondering - why is the SPDX identifier for the most part added
> as separate C++ comment at the beginning of the file, and not inline with
> the rest of the top comments ?  SPDX doesn't mandate this - the examples
> I can find on the SPDX web site all show it inline. Is there a special
> Linux kernel convention ?

See the patch series from Thomas that answers this question for you by
adding documentation to the kernel explaining it all :)

thanks,

greg k-h

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

* Re: [v2] mfd: stm32: Adopt SPDX identifier
  2017-12-05 17:28   ` Greg KH
@ 2017-12-05 18:07     ` Guenter Roeck
  0 siblings, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2017-12-05 18:07 UTC (permalink / raw)
  To: Greg KH
  Cc: benjamin.gaignard, lee.jones, alexandre.torgue, linux-arm-kernel,
	linux-kernel, Benjamin Gaignard

On Tue, Dec 05, 2017 at 06:28:11PM +0100, Greg KH wrote:
> On Tue, Dec 05, 2017 at 09:23:37AM -0800, Guenter Roeck wrote:
> > On Tue, Dec 05, 2017 at 04:24:18PM +0100, benjamin.gaignard@linaro.org wrote:
> > > Add SPDX identifier
> > > 
> > > Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
> > > ---
> > >  drivers/mfd/stm32-lptimer.c       | 6 +-----
> > >  drivers/mfd/stm32-timers.c        | 4 +---
> > >  include/linux/mfd/stm32-lptimer.h | 6 +-----
> > >  include/linux/mfd/stm32-timers.h  | 4 +---
> > >  4 files changed, 4 insertions(+), 16 deletions(-)
> > > 
> > > diff --git a/drivers/mfd/stm32-lptimer.c b/drivers/mfd/stm32-lptimer.c
> > > index 075330a25f61..a00f99f36559 100644
> > > --- a/drivers/mfd/stm32-lptimer.c
> > > +++ b/drivers/mfd/stm32-lptimer.c
> > > @@ -1,13 +1,9 @@
> > > +// SPDX-License-Identifier: GPL-2.0
> > >  /*
> > 
> > I have been wondering - why is the SPDX identifier for the most part added
> > as separate C++ comment at the beginning of the file, and not inline with
> > the rest of the top comments ?  SPDX doesn't mandate this - the examples
> > I can find on the SPDX web site all show it inline. Is there a special
> > Linux kernel convention ?
> 
> See the patch series from Thomas that answers this question for you by
> adding documentation to the kernel explaining it all :)
> 

So it is a special Linux kernel convention. Interesting (and brrr ... :-)
Thanks for the clarification.

Guenter

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

* Re: [PATCH v2] mfd: stm32: Adopt SPDX identifier
  2017-12-05 15:24 [PATCH v2] mfd: stm32: Adopt SPDX identifier Benjamin Gaignard
  2017-12-05 17:23 ` [v2] " Guenter Roeck
@ 2017-12-07 10:36 ` Lee Jones
  1 sibling, 0 replies; 5+ messages in thread
From: Lee Jones @ 2017-12-07 10:36 UTC (permalink / raw)
  To: Benjamin Gaignard
  Cc: alexandre.torgue, linux-arm-kernel, linux-kernel, Benjamin Gaignard

On Tue, 05 Dec 2017, Benjamin Gaignard wrote:

> Add SPDX identifier
> 
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
> ---
>  drivers/mfd/stm32-lptimer.c       | 6 +-----
>  drivers/mfd/stm32-timers.c        | 4 +---
>  include/linux/mfd/stm32-lptimer.h | 6 +-----
>  include/linux/mfd/stm32-timers.h  | 4 +---
>  4 files changed, 4 insertions(+), 16 deletions(-)

Applied, thanks.

-- 
Lee Jones
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2017-12-07 10:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-05 15:24 [PATCH v2] mfd: stm32: Adopt SPDX identifier Benjamin Gaignard
2017-12-05 17:23 ` [v2] " Guenter Roeck
2017-12-05 17:28   ` Greg KH
2017-12-05 18:07     ` Guenter Roeck
2017-12-07 10:36 ` [PATCH v2] " Lee Jones

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