linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] i2c: stm32: Fix copyrights
@ 2017-11-30  8:43 Benjamin Gaignard
  2017-12-07  9:54 ` Wolfram Sang
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Gaignard @ 2017-11-30  8:43 UTC (permalink / raw)
  To: linux-arm-kernel

Uniformize STMicroelectronics copyrights headers
Add SPDX identifier

Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
Acked-by: Alexandre TORGUE <alexandre.torgue@st.com>
CC: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
---
 drivers/i2c/busses/i2c-stm32.h   | 3 ++-
 drivers/i2c/busses/i2c-stm32f4.c | 3 ++-
 drivers/i2c/busses/i2c-stm32f7.c | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-stm32.h b/drivers/i2c/busses/i2c-stm32.h
index dab51761f8c5..d4f9cef251ac 100644
--- a/drivers/i2c/busses/i2c-stm32.h
+++ b/drivers/i2c/busses/i2c-stm32.h
@@ -1,10 +1,11 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * i2c-stm32.h
  *
  * Copyright (C) M'boumba Cedric Madianga 2017
+ * Copyright (C) STMicroelectronics 2017
  * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
  *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #ifndef _I2C_STM32_H
diff --git a/drivers/i2c/busses/i2c-stm32f4.c b/drivers/i2c/busses/i2c-stm32f4.c
index 4ec108496f15..47c8d00de53f 100644
--- a/drivers/i2c/busses/i2c-stm32f4.c
+++ b/drivers/i2c/busses/i2c-stm32f4.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Driver for STMicroelectronics STM32 I2C controller
  *
@@ -6,11 +7,11 @@
  * http://www.st.com/resource/en/reference_manual/DM00031020.pdf
  *
  * Copyright (C) M'boumba Cedric Madianga 2016
+ * Copyright (C) STMicroelectronics 2017
  * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
  *
  * This driver is based on i2c-st.c
  *
- * License terms:  GNU General Public License (GPL), version 2
  */
 
 #include <linux/clk.h>
diff --git a/drivers/i2c/busses/i2c-stm32f7.c b/drivers/i2c/busses/i2c-stm32f7.c
index d4a6e9c2e9aa..b445b3bb0bb1 100644
--- a/drivers/i2c/busses/i2c-stm32f7.c
+++ b/drivers/i2c/busses/i2c-stm32f7.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Driver for STMicroelectronics STM32F7 I2C controller
  *
@@ -7,11 +8,11 @@
  * http://www.st.com/resource/en/reference_manual/dm00124865.pdf
  *
  * Copyright (C) M'boumba Cedric Madianga 2017
+ * Copyright (C) STMicroelectronics 2017
  * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
  *
  * This driver is based on i2c-stm32f4.c
  *
- * License terms:  GNU General Public License (GPL), version 2
  */
 #include <linux/clk.h>
 #include <linux/delay.h>
-- 
2.15.0

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

* [PATCH v2] i2c: stm32: Fix copyrights
  2017-11-30  8:43 [PATCH v2] i2c: stm32: Fix copyrights Benjamin Gaignard
@ 2017-12-07  9:54 ` Wolfram Sang
  2017-12-07 13:17   ` Pierre Yves MORDRET
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfram Sang @ 2017-12-07  9:54 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Nov 30, 2017 at 09:43:57AM +0100, Benjamin Gaignard wrote:
> Uniformize STMicroelectronics copyrights headers
> Add SPDX identifier
> 
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
> Acked-by: Alexandre TORGUE <alexandre.torgue@st.com>
> CC: M'boumba Cedric Madianga <cedric.madianga@gmail.com>

I'd need an ack from M'boumba Cedric Madianga for this one.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20171207/d1ad3d9c/attachment.sig>

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

* [PATCH v2] i2c: stm32: Fix copyrights
  2017-12-07  9:54 ` Wolfram Sang
@ 2017-12-07 13:17   ` Pierre Yves MORDRET
  2017-12-07 13:31     ` Wolfram Sang
  0 siblings, 1 reply; 5+ messages in thread
From: Pierre Yves MORDRET @ 2017-12-07 13:17 UTC (permalink / raw)
  To: linux-arm-kernel

Wolfram,

I take over ownership of this driver from now on.

Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>

On 12/07/2017 10:54 AM, Wolfram Sang wrote:
> On Thu, Nov 30, 2017 at 09:43:57AM +0100, Benjamin Gaignard wrote:
>> Uniformize STMicroelectronics copyrights headers
>> Add SPDX identifier
>>
>> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
>> Acked-by: Alexandre TORGUE <alexandre.torgue@st.com>
>> CC: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
> 
> I'd need an ack from M'boumba Cedric Madianga for this one.
> 

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

* [PATCH v2] i2c: stm32: Fix copyrights
  2017-12-07 13:17   ` Pierre Yves MORDRET
@ 2017-12-07 13:31     ` Wolfram Sang
  2017-12-07 13:42       ` Pierre Yves MORDRET
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfram Sang @ 2017-12-07 13:31 UTC (permalink / raw)
  To: linux-arm-kernel


> I take over ownership of this driver from now on.
> 
> Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>

Ok. Thanks! Can you create a MAINTAINERS entry so you will get
automatically CCed on patches touching your driver?

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20171207/f3e7f150/attachment.sig>

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

* [PATCH v2] i2c: stm32: Fix copyrights
  2017-12-07 13:31     ` Wolfram Sang
@ 2017-12-07 13:42       ` Pierre Yves MORDRET
  0 siblings, 0 replies; 5+ messages in thread
From: Pierre Yves MORDRET @ 2017-12-07 13:42 UTC (permalink / raw)
  To: linux-arm-kernel

Ok. will do

~PYM~

On 12/07/2017 02:31 PM, Wolfram Sang wrote:
> 
>> I take over ownership of this driver from now on.
>>
>> Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
> 
> Ok. Thanks! Can you create a MAINTAINERS entry so you will get
> automatically CCed on patches touching your driver?
> 

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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-30  8:43 [PATCH v2] i2c: stm32: Fix copyrights Benjamin Gaignard
2017-12-07  9:54 ` Wolfram Sang
2017-12-07 13:17   ` Pierre Yves MORDRET
2017-12-07 13:31     ` Wolfram Sang
2017-12-07 13:42       ` Pierre Yves MORDRET

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