projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ab7875
)
rtc: test: make license text and module license match.
author
Alexandre Belloni
<
[email protected]
>
Wed, 19 Sep 2018 01:16:31 +0000
(
03:16
+0200)
committer
Alexandre Belloni
<
[email protected]
>
Fri, 28 Sep 2018 12:21:00 +0000
(14:21 +0200)
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 <
[email protected]
>
drivers/rtc/rtc-test.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-test.c
b/drivers/rtc/rtc-test.c
index ade6a82709bee792c912dcc6f81c26f6f8b56d5b..93f1638fb8c81fbeb0f642c64f4b90b88cf7767c 100644
(file)
--- a/
drivers/rtc/rtc-test.c
+++ b/
drivers/rtc/rtc-test.c
@@
-197,7
+197,7
@@
static void __exit test_exit(void)
MODULE_AUTHOR("Alessandro Zummo <
[email protected]
>");
MODULE_DESCRIPTION("RTC test driver/device");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL
v2
");
module_init(test_init);
module_exit(test_exit);