diff options
author | Nishanth Menon | 2014-09-15 23:33:37 +0200 |
---|---|---|
committer | Dmitry Torokhov | 2014-09-15 23:36:12 +0200 |
commit | 05f7588c3c1641f64af93dc042947bbac35f39f6 (patch) | |
tree | 9e4d695151b5445da181573491fe431b649df1c9 /drivers | |
parent | Input: palmas-pwrbutton - use IRQF_ONESHOT (diff) | |
download | kernel-qcow2-linux-05f7588c3c1641f64af93dc042947bbac35f39f6.tar.gz kernel-qcow2-linux-05f7588c3c1641f64af93dc042947bbac35f39f6.tar.xz kernel-qcow2-linux-05f7588c3c1641f64af93dc042947bbac35f39f6.zip |
Input: palmas-pwrbutton - fix typo in the license string
Follow the license string convention indicated in include/linux/module.h
(don't capitalize v).
This fixes following randconfig warning:
FATAL: modpost: GPL-incompatible module palmas-pwrbutton.ko uses GPL-only symbol 'platform_driver_unregister'
Fixes: adff5962fdd2 ("Input: introduce palmas-pwrbutton")
Reported-by: Jim Davis <jim.epost@gmail.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/misc/palmas-pwrbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/misc/palmas-pwrbutton.c b/drivers/input/misc/palmas-pwrbutton.c index 766f594b45e2..f505ac3a8d87 100644 --- a/drivers/input/misc/palmas-pwrbutton.c +++ b/drivers/input/misc/palmas-pwrbutton.c @@ -328,5 +328,5 @@ module_platform_driver(palmas_pwron_driver); MODULE_ALIAS("platform:palmas-pwrbutton"); MODULE_DESCRIPTION("Palmas Power Button"); -MODULE_LICENSE("GPL V2"); +MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Texas Instruments Inc."); |