diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-06-04 04:11:33 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-19 11:09:55 -0400 |
commit | d2912cb15bdda8ba4a5dd73396ad62641af2f520 (patch) | |
tree | ff723089c8673e3f99df3ddcdaeae7a52bd6fdac /drivers/power/reset | |
parent | 20c8ccb1975b8d5639789d1025ad6ada38bd6f48 (diff) |
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
Based on 2 normalized pattern(s):
this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 as
published by the free software foundation
this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 as
published by the free software foundation #
extracted by the scancode license scanner the SPDX license identifier
GPL-2.0-only
has been chosen to replace the boilerplate/reference in 4122 file(s).
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Enrico Weigelt <info@metux.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Allison Randal <allison@lohutok.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/power/reset')
-rw-r--r-- | drivers/power/reset/arm-versatile-reboot.c | 6 | ||||
-rw-r--r-- | drivers/power/reset/gpio-poweroff.c | 6 | ||||
-rw-r--r-- | drivers/power/reset/hisi-reboot.c | 5 | ||||
-rw-r--r-- | drivers/power/reset/keystone-reset.c | 5 | ||||
-rw-r--r-- | drivers/power/reset/restart-poweroff.c | 5 | ||||
-rw-r--r-- | drivers/power/reset/st-poweroff.c | 5 | ||||
-rw-r--r-- | drivers/power/reset/zx-reboot.c | 5 |
7 files changed, 7 insertions, 30 deletions
diff --git a/drivers/power/reset/arm-versatile-reboot.c b/drivers/power/reset/arm-versatile-reboot.c index 06d34ab47df5..08d0a07b58ef 100644 --- a/drivers/power/reset/arm-versatile-reboot.c +++ b/drivers/power/reset/arm-versatile-reboot.c | |||
@@ -1,12 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Copyright (C) 2014 Linaro Ltd. | 3 | * Copyright (C) 2014 Linaro Ltd. |
3 | * | 4 | * |
4 | * Author: Linus Walleij <linus.walleij@linaro.org> | 5 | * Author: Linus Walleij <linus.walleij@linaro.org> |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2, as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | */ | 6 | */ |
11 | #include <linux/init.h> | 7 | #include <linux/init.h> |
12 | #include <linux/mfd/syscon.h> | 8 | #include <linux/mfd/syscon.h> |
diff --git a/drivers/power/reset/gpio-poweroff.c b/drivers/power/reset/gpio-poweroff.c index 52525b6c18db..6a4bbb506551 100644 --- a/drivers/power/reset/gpio-poweroff.c +++ b/drivers/power/reset/gpio-poweroff.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Toggles a GPIO pin to power down a device | 3 | * Toggles a GPIO pin to power down a device |
3 | * | 4 | * |
@@ -5,11 +6,6 @@ | |||
5 | * Andrew Lunn <andrew@lunn.ch> | 6 | * Andrew Lunn <andrew@lunn.ch> |
6 | * | 7 | * |
7 | * Copyright (C) 2012 Jamie Lentin | 8 | * Copyright (C) 2012 Jamie Lentin |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | * | ||
13 | */ | 9 | */ |
14 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
15 | #include <linux/init.h> | 11 | #include <linux/init.h> |
diff --git a/drivers/power/reset/hisi-reboot.c b/drivers/power/reset/hisi-reboot.c index f69387e12c1e..0ba5fdce186f 100644 --- a/drivers/power/reset/hisi-reboot.c +++ b/drivers/power/reset/hisi-reboot.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Hisilicon SoC reset code | 3 | * Hisilicon SoC reset code |
3 | * | 4 | * |
@@ -5,10 +6,6 @@ | |||
5 | * Copyright (c) 2014 Linaro Ltd. | 6 | * Copyright (c) 2014 Linaro Ltd. |
6 | * | 7 | * |
7 | * Author: Haojian Zhuang <haojian.zhuang@linaro.org> | 8 | * Author: Haojian Zhuang <haojian.zhuang@linaro.org> |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | 9 | */ |
13 | 10 | ||
14 | #include <linux/delay.h> | 11 | #include <linux/delay.h> |
diff --git a/drivers/power/reset/keystone-reset.c b/drivers/power/reset/keystone-reset.c index 09380857a1c5..ad11faae19c5 100644 --- a/drivers/power/reset/keystone-reset.c +++ b/drivers/power/reset/keystone-reset.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * TI keystone reboot driver | 3 | * TI keystone reboot driver |
3 | * | 4 | * |
4 | * Copyright (C) 2014 Texas Instruments Incorporated. http://www.ti.com/ | 5 | * Copyright (C) 2014 Texas Instruments Incorporated. http://www.ti.com/ |
5 | * | 6 | * |
6 | * Author: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com> | 7 | * Author: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/io.h> | 10 | #include <linux/io.h> |
diff --git a/drivers/power/reset/restart-poweroff.c b/drivers/power/reset/restart-poweroff.c index 41b22c4d5236..d233daa5835b 100644 --- a/drivers/power/reset/restart-poweroff.c +++ b/drivers/power/reset/restart-poweroff.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Power off by restarting and let u-boot keep hold of the machine | 3 | * Power off by restarting and let u-boot keep hold of the machine |
3 | * until the user presses a button for example. | 4 | * until the user presses a button for example. |
@@ -5,10 +6,6 @@ | |||
5 | * Andrew Lunn <andrew@lunn.ch> | 6 | * Andrew Lunn <andrew@lunn.ch> |
6 | * | 7 | * |
7 | * Copyright (C) 2012 Andrew Lunn | 8 | * Copyright (C) 2012 Andrew Lunn |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | 9 | */ |
13 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
14 | #include <linux/init.h> | 11 | #include <linux/init.h> |
diff --git a/drivers/power/reset/st-poweroff.c b/drivers/power/reset/st-poweroff.c index 2046b31232f7..5ccaacffab54 100644 --- a/drivers/power/reset/st-poweroff.c +++ b/drivers/power/reset/st-poweroff.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Copyright (C) 2014 STMicroelectronics | 3 | * Copyright (C) 2014 STMicroelectronics |
3 | * | 4 | * |
4 | * Power off Restart driver, used in STMicroelectronics devices. | 5 | * Power off Restart driver, used in STMicroelectronics devices. |
5 | * | 6 | * |
6 | * Author: Christophe Kerello <christophe.kerello@st.com> | 7 | * Author: Christophe Kerello <christophe.kerello@st.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2, as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/module.h> | 10 | #include <linux/module.h> |
diff --git a/drivers/power/reset/zx-reboot.c b/drivers/power/reset/zx-reboot.c index 186901c96c01..457950833dba 100644 --- a/drivers/power/reset/zx-reboot.c +++ b/drivers/power/reset/zx-reboot.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * ZTE zx296702 SoC reset code | 3 | * ZTE zx296702 SoC reset code |
3 | * | 4 | * |
4 | * Copyright (c) 2015 Linaro Ltd. | 5 | * Copyright (c) 2015 Linaro Ltd. |
5 | * | 6 | * |
6 | * Author: Jun Nie <jun.nie@linaro.org> | 7 | * Author: Jun Nie <jun.nie@linaro.org> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/delay.h> | 10 | #include <linux/delay.h> |