aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2018-01-10 17:42:05 -0500
committerJacek Anaszewski <jacek.anaszewski@gmail.com>2018-01-11 15:24:17 -0500
commit6a836631e303cec7fd9469ae53a4d97d0360eb38 (patch)
treed0e3db7a81dafdf0ae96270b694b6a4ad733893d
parenta2169c9b762ac64899b2aefb170ea0e16178afd6 (diff)
leds: ledtrig-transient: Add SPDX license identifiers
Replace GPL license statements with SPDX GPL-2.0 license identifiers and correct the module license to GPLv2. Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com> Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
-rw-r--r--drivers/leds/trigger/ledtrig-transient.c33
1 files changed, 13 insertions, 20 deletions
diff --git a/drivers/leds/trigger/ledtrig-transient.c b/drivers/leds/trigger/ledtrig-transient.c
index 7acce64b692a..9d1769073562 100644
--- a/drivers/leds/trigger/ledtrig-transient.c
+++ b/drivers/leds/trigger/ledtrig-transient.c
@@ -1,22 +1,15 @@
1/* 1// SPDX-License-Identifier: GPL-2.0
2 * LED Kernel Transient Trigger 2//
3 * 3// LED Kernel Transient Trigger
4 * Copyright (C) 2012 Shuah Khan <shuahkhan@gmail.com> 4//
5 * 5// Transient trigger allows one shot timer activation. Please refer to
6 * Based on Richard Purdie's ledtrig-timer.c and Atsushi Nemoto's 6// Documentation/leds/ledtrig-transient.txt for details
7 * ledtrig-heartbeat.c 7// Copyright (C) 2012 Shuah Khan <shuahkhan@gmail.com>
8 * Design and use-case input from Jonas Bonn <jonas@southpole.se> and 8//
9 * Neil Brown <neilb@suse.de> 9// Based on Richard Purdie's ledtrig-timer.c and Atsushi Nemoto's
10 * 10// ledtrig-heartbeat.c
11 * This program is free software; you can redistribute it and/or modify 11// Design and use-case input from Jonas Bonn <jonas@southpole.se> and
12 * it under the terms of the GNU General Public License version 2 as 12// Neil Brown <neilb@suse.de>
13 * published by the Free Software Foundation.
14 *
15 */
16/*
17 * Transient trigger allows one shot timer activation. Please refer to
18 * Documentation/leds/ledtrig-transient.txt for details
19*/
20 13
21#include <linux/module.h> 14#include <linux/module.h>
22#include <linux/kernel.h> 15#include <linux/kernel.h>
@@ -238,4 +231,4 @@ module_exit(transient_trig_exit);
238 231
239MODULE_AUTHOR("Shuah Khan <shuahkhan@gmail.com>"); 232MODULE_AUTHOR("Shuah Khan <shuahkhan@gmail.com>");
240MODULE_DESCRIPTION("Transient LED trigger"); 233MODULE_DESCRIPTION("Transient LED trigger");
241MODULE_LICENSE("GPL"); 234MODULE_LICENSE("GPL v2");