aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-test.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2018-09-18 21:16:31 -0400
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2018-09-28 08:21:00 -0400
commitfd13c930fe6a6dce8ae1f551121cfd947fb24dd5 (patch)
treefd12d6715e9d9afa51e4d0f6402cabfff610ec81 /drivers/rtc/rtc-test.c
parent2ab78755e93a10f6216c860a2012f3592f395603 (diff)
rtc: test: make license text and module license match.
The license text is specifying GPL v2 only but the MODULE_LICENSE is set to GPL which means GNU Public License v2 or later. When MODULE_LICENSE and boiler plate does not match, go for boiler plate license. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-test.c')
-rw-r--r--drivers/rtc/rtc-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c
index ade6a82709be..93f1638fb8c8 100644
--- a/drivers/rtc/rtc-test.c
+++ b/drivers/rtc/rtc-test.c
@@ -197,7 +197,7 @@ static void __exit test_exit(void)
197 197
198MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); 198MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
199MODULE_DESCRIPTION("RTC test driver/device"); 199MODULE_DESCRIPTION("RTC test driver/device");
200MODULE_LICENSE("GPL"); 200MODULE_LICENSE("GPL v2");
201 201
202module_init(test_init); 202module_init(test_init);
203module_exit(test_exit); 203module_exit(test_exit);