diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-13 18:02:48 -0400 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-17 22:36:01 -0400 |
commit | cdf7545aef65c47c17afdd3bed90410b3fd33bfd (patch) | |
tree | 68f1879a396290f7bbc317dfe0d311099908ce51 /drivers/rtc | |
parent | 33fee143ac6e3fed184cdd1791fb4b51f06a25c1 (diff) |
rtc: convert core to SPDX identifier
Use SPDX-License-Identifier instead of a verbose license text. Also fix the
block comment alignment.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/class.c | 7 | ||||
-rw-r--r-- | drivers/rtc/dev.c | 7 | ||||
-rw-r--r-- | drivers/rtc/hctosys.c | 7 | ||||
-rw-r--r-- | drivers/rtc/interface.c | 7 | ||||
-rw-r--r-- | drivers/rtc/lib.c | 7 | ||||
-rw-r--r-- | drivers/rtc/nvmem.c | 5 | ||||
-rw-r--r-- | drivers/rtc/proc.c | 7 | ||||
-rw-r--r-- | drivers/rtc/sysfs.c | 7 | ||||
-rw-r--r-- | drivers/rtc/systohc.c | 7 |
9 files changed, 16 insertions, 45 deletions
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c index ac93b76f2b11..22190ad28e8b 100644 --- a/drivers/rtc/class.c +++ b/drivers/rtc/class.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, base class | 3 | * RTC subsystem, base class |
3 | * | 4 | * |
@@ -5,11 +6,7 @@ | |||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | * |
7 | * class skeleton from drivers/hwmon/hwmon.c | 8 | * class skeleton from drivers/hwmon/hwmon.c |
8 | * | 9 | */ |
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 | 10 | ||
14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 11 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
15 | 12 | ||
diff --git a/drivers/rtc/dev.c b/drivers/rtc/dev.c index 1d006ef4bb57..f68aae035b81 100644 --- a/drivers/rtc/dev.c +++ b/drivers/rtc/dev.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, dev interface | 3 | * RTC subsystem, dev interface |
3 | * | 4 | * |
@@ -5,11 +6,7 @@ | |||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | * |
7 | * based on arch/arm/common/rtctime.c | 8 | * based on arch/arm/common/rtctime.c |
8 | * | 9 | */ |
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 | 10 | ||
14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 11 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
15 | 12 | ||
diff --git a/drivers/rtc/hctosys.c b/drivers/rtc/hctosys.c index ff2092a0d38c..eacbe500c44b 100644 --- a/drivers/rtc/hctosys.c +++ b/drivers/rtc/hctosys.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, initialize system time on startup | 3 | * RTC subsystem, initialize system time on startup |
3 | * | 4 | * |
4 | * Copyright (C) 2005 Tower Technologies | 5 | * Copyright (C) 2005 Tower Technologies |
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | */ |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | 8 | ||
12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 9 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
13 | 10 | ||
diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c index 98d9c87b0d1b..28bd767e03a0 100644 --- a/drivers/rtc/interface.c +++ b/drivers/rtc/interface.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, interface functions | 3 | * RTC subsystem, interface functions |
3 | * | 4 | * |
@@ -5,11 +6,7 @@ | |||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | * |
7 | * based on arch/arm/common/rtctime.c | 8 | * based on arch/arm/common/rtctime.c |
8 | * | 9 | */ |
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 | 10 | ||
14 | #include <linux/rtc.h> | 11 | #include <linux/rtc.h> |
15 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
diff --git a/drivers/rtc/lib.c b/drivers/rtc/lib.c index 9714cb3d1e29..3d0dc70ff7d8 100644 --- a/drivers/rtc/lib.c +++ b/drivers/rtc/lib.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * rtc and date/time utility functions | 3 | * rtc and date/time utility functions |
3 | * | 4 | * |
@@ -5,11 +6,7 @@ | |||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | * |
7 | * based on arch/arm/common/rtctime.c and other bits | 8 | * based on arch/arm/common/rtctime.c and other bits |
8 | * | 9 | */ |
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 | 10 | ||
14 | #include <linux/export.h> | 11 | #include <linux/export.h> |
15 | #include <linux/rtc.h> | 12 | #include <linux/rtc.h> |
diff --git a/drivers/rtc/nvmem.c b/drivers/rtc/nvmem.c index dce518d5e50e..7481a4cd2753 100644 --- a/drivers/rtc/nvmem.c +++ b/drivers/rtc/nvmem.c | |||
@@ -1,11 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, nvmem interface | 3 | * RTC subsystem, nvmem interface |
3 | * | 4 | * |
4 | * Copyright (C) 2017 Alexandre Belloni | 5 | * Copyright (C) 2017 Alexandre Belloni |
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 | */ | 6 | */ |
10 | 7 | ||
11 | #include <linux/err.h> | 8 | #include <linux/err.h> |
diff --git a/drivers/rtc/proc.c b/drivers/rtc/proc.c index 4d74e4f4ff30..a741c4d8f5a5 100644 --- a/drivers/rtc/proc.c +++ b/drivers/rtc/proc.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, proc interface | 3 | * RTC subsystem, proc interface |
3 | * | 4 | * |
@@ -5,11 +6,7 @@ | |||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | * |
7 | * based on arch/arm/common/rtctime.c | 8 | * based on arch/arm/common/rtctime.c |
8 | * | 9 | */ |
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 | 10 | ||
14 | #include <linux/module.h> | 11 | #include <linux/module.h> |
15 | #include <linux/rtc.h> | 12 | #include <linux/rtc.h> |
diff --git a/drivers/rtc/sysfs.c b/drivers/rtc/sysfs.c index a8f22ee726bb..0d3dac557df5 100644 --- a/drivers/rtc/sysfs.c +++ b/drivers/rtc/sysfs.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * RTC subsystem, sysfs interface | 3 | * RTC subsystem, sysfs interface |
3 | * | 4 | * |
4 | * Copyright (C) 2005 Tower Technologies | 5 | * Copyright (C) 2005 Tower Technologies |
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 6 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
6 | * | 7 | */ |
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | 8 | ||
12 | #include <linux/module.h> | 9 | #include <linux/module.h> |
13 | #include <linux/rtc.h> | 10 | #include <linux/rtc.h> |
diff --git a/drivers/rtc/systohc.c b/drivers/rtc/systohc.c index 718293d72426..8bf8e0c1e8fd 100644 --- a/drivers/rtc/systohc.c +++ b/drivers/rtc/systohc.c | |||
@@ -1,9 +1,4 @@ | |||
1 | /* | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published by | ||
4 | * the Free Software Foundation. | ||
5 | * | ||
6 | */ | ||
7 | #include <linux/rtc.h> | 2 | #include <linux/rtc.h> |
8 | #include <linux/time.h> | 3 | #include <linux/time.h> |
9 | 4 | ||