diff options
author | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2017-11-30 03:43:57 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2017-12-12 17:16:04 -0500 |
commit | 9c41e452188339989c2c9ca5fc54f10935207968 (patch) | |
tree | ac40134922a829b547faf62b25331d0d43f80208 | |
parent | a3fe09bc03f31dd7351d8277348fa59bcec9cd20 (diff) |
i2c: stm32: Fix copyrights
Uniformize STMicroelectronics copyrights headers and add SPDX
identifier.
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
Acked-by: Alexandre TORGUE <alexandre.torgue@st.com>
Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
Acked-by: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
-rw-r--r-- | drivers/i2c/busses/i2c-stm32.h | 3 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-stm32f4.c | 3 | ||||
-rw-r--r-- | 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 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * i2c-stm32.h | 3 | * i2c-stm32.h |
3 | * | 4 | * |
4 | * Copyright (C) M'boumba Cedric Madianga 2017 | 5 | * Copyright (C) M'boumba Cedric Madianga 2017 |
6 | * Copyright (C) STMicroelectronics 2017 | ||
5 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> | 7 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> |
6 | * | 8 | * |
7 | * License terms: GNU General Public License (GPL), version 2 | ||
8 | */ | 9 | */ |
9 | 10 | ||
10 | #ifndef _I2C_STM32_H | 11 | #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 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Driver for STMicroelectronics STM32 I2C controller | 3 | * Driver for STMicroelectronics STM32 I2C controller |
3 | * | 4 | * |
@@ -6,11 +7,11 @@ | |||
6 | * http://www.st.com/resource/en/reference_manual/DM00031020.pdf | 7 | * http://www.st.com/resource/en/reference_manual/DM00031020.pdf |
7 | * | 8 | * |
8 | * Copyright (C) M'boumba Cedric Madianga 2016 | 9 | * Copyright (C) M'boumba Cedric Madianga 2016 |
10 | * Copyright (C) STMicroelectronics 2017 | ||
9 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> | 11 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> |
10 | * | 12 | * |
11 | * This driver is based on i2c-st.c | 13 | * This driver is based on i2c-st.c |
12 | * | 14 | * |
13 | * License terms: GNU General Public License (GPL), version 2 | ||
14 | */ | 15 | */ |
15 | 16 | ||
16 | #include <linux/clk.h> | 17 | #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 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Driver for STMicroelectronics STM32F7 I2C controller | 3 | * Driver for STMicroelectronics STM32F7 I2C controller |
3 | * | 4 | * |
@@ -7,11 +8,11 @@ | |||
7 | * http://www.st.com/resource/en/reference_manual/dm00124865.pdf | 8 | * http://www.st.com/resource/en/reference_manual/dm00124865.pdf |
8 | * | 9 | * |
9 | * Copyright (C) M'boumba Cedric Madianga 2017 | 10 | * Copyright (C) M'boumba Cedric Madianga 2017 |
11 | * Copyright (C) STMicroelectronics 2017 | ||
10 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> | 12 | * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> |
11 | * | 13 | * |
12 | * This driver is based on i2c-stm32f4.c | 14 | * This driver is based on i2c-stm32f4.c |
13 | * | 15 | * |
14 | * License terms: GNU General Public License (GPL), version 2 | ||
15 | */ | 16 | */ |
16 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
17 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |