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

leds: lt3593: update email address and switch to SPDX license header

Update the email address in the module information and in the comments
and in the module information, and drop the existing boilerplate in
favor of a SPDX header.

Also sync the module license information with the header.

Signed-off-by: Daniel Mack <daniel@zonque.org>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>

authored by

Daniel Mack and committed by
Jacek Anaszewski
dd08ac2e 8cd7d6da

+4 -19
+4 -19
drivers/leds/leds-lt3593.c
··· 1 - /* 2 - * LEDs driver for LT3593 controllers 3 - * 4 - * See the datasheet at http://cds.linear.com/docs/Datasheet/3593f.pdf 5 - * 6 - * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> 7 - * 8 - * Based on leds-gpio.c, 9 - * 10 - * Copyright (C) 2007 8D Technologies inc. 11 - * Raphael Assenat <raph@8d.com> 12 - * Copyright (C) 2008 Freescale Semiconductor, Inc. 13 - * 14 - * This program is free software; you can redistribute it and/or modify 15 - * it under the terms of the GNU General Public License version 2 as 16 - * published by the Free Software Foundation. 17 - */ 1 + // SPDX-License-Identifier: GPL-2.0 2 + // Copyright (c) 2009,2018 Daniel Mack <daniel@zonque.org> 18 3 19 4 #include <linux/kernel.h> 20 5 #include <linux/platform_device.h> ··· 196 211 197 212 module_platform_driver(lt3593_led_driver); 198 213 199 - MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); 214 + MODULE_AUTHOR("Daniel Mack <daniel@zonque.org>"); 200 215 MODULE_DESCRIPTION("LED driver for LT3593 controllers"); 201 - MODULE_LICENSE("GPL"); 216 + MODULE_LICENSE("GPL v2"); 202 217 MODULE_ALIAS("platform:leds-lt3593");