Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

leds: triggers: make the MODULE_LICENSE string match the actual license

These files are licensed under GPL version 2 only. So use "GPL v2"
instead of "GPL" (which means v2 or later).

Also remove an empty (but commented) line at the end of the license
header which nicely proves in the context that the drivers are really v2
only :-)

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>

authored by

Uwe Kleine-König and committed by
Jacek Anaszewski
033692eb 07abd432

+8 -12
+2 -2
drivers/leds/trigger/ledtrig-activity.c
··· 7 7 * This program is free software; you can redistribute it and/or modify 8 8 * it under the terms of the GNU General Public License version 2 as 9 9 * published by the Free Software Foundation. 10 - * 11 10 */ 11 + 12 12 #include <linux/init.h> 13 13 #include <linux/kernel.h> 14 14 #include <linux/kernel_stat.h> ··· 269 269 270 270 MODULE_AUTHOR("Willy Tarreau <w@1wt.eu>"); 271 271 MODULE_DESCRIPTION("Activity LED trigger"); 272 - MODULE_LICENSE("GPL"); 272 + MODULE_LICENSE("GPL v2");
+1 -2
drivers/leds/trigger/ledtrig-camera.c
··· 10 10 * This program is free software; you can redistribute it and/or modify 11 11 * it under the terms of the GNU General Public License version 2 as 12 12 * published by the Free Software Foundation. 13 - * 14 13 */ 15 14 16 15 #include <linux/module.h> ··· 53 54 54 55 MODULE_DESCRIPTION("LED Trigger for Camera Flash/Torch Control"); 55 56 MODULE_AUTHOR("Milo Kim"); 56 - MODULE_LICENSE("GPL"); 57 + MODULE_LICENSE("GPL v2");
+1 -2
drivers/leds/trigger/ledtrig-default-on.c
··· 8 8 * This program is free software; you can redistribute it and/or modify 9 9 * it under the terms of the GNU General Public License version 2 as 10 10 * published by the Free Software Foundation. 11 - * 12 11 */ 13 12 14 13 #include <linux/module.h> ··· 41 42 42 43 MODULE_AUTHOR("Nick Forbes <nick.forbes@incepta.com>"); 43 44 MODULE_DESCRIPTION("Default-ON LED trigger"); 44 - MODULE_LICENSE("GPL"); 45 + MODULE_LICENSE("GPL v2");
+1 -2
drivers/leds/trigger/ledtrig-gpio.c
··· 6 6 * This program is free software; you can redistribute it and/or modify 7 7 * it under the terms of the GNU General Public License version 2 as 8 8 * published by the Free Software Foundation. 9 - * 10 9 */ 11 10 12 11 #include <linux/module.h> ··· 234 235 235 236 MODULE_AUTHOR("Felipe Balbi <me@felipebalbi.com>"); 236 237 MODULE_DESCRIPTION("GPIO LED trigger"); 237 - MODULE_LICENSE("GPL"); 238 + MODULE_LICENSE("GPL v2");
+2 -2
drivers/leds/trigger/ledtrig-heartbeat.c
··· 9 9 * This program is free software; you can redistribute it and/or modify 10 10 * it under the terms of the GNU General Public License version 2 as 11 11 * published by the Free Software Foundation. 12 - * 13 12 */ 13 + 14 14 #include <linux/module.h> 15 15 #include <linux/kernel.h> 16 16 #include <linux/init.h> ··· 213 213 214 214 MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>"); 215 215 MODULE_DESCRIPTION("Heartbeat LED trigger"); 216 - MODULE_LICENSE("GPL"); 216 + MODULE_LICENSE("GPL v2");
+1 -2
drivers/leds/trigger/ledtrig-timer.c
··· 8 8 * This program is free software; you can redistribute it and/or modify 9 9 * it under the terms of the GNU General Public License version 2 as 10 10 * published by the Free Software Foundation. 11 - * 12 11 */ 13 12 14 13 #include <linux/module.h> ··· 126 127 127 128 MODULE_AUTHOR("Richard Purdie <rpurdie@openedhand.com>"); 128 129 MODULE_DESCRIPTION("Timer LED trigger"); 129 - MODULE_LICENSE("GPL"); 130 + MODULE_LICENSE("GPL v2");