From d17237a0a794658057af61f5a0e5301edb105cda Mon Sep 17 00:00:00 2001 From: Nishanth Menon Date: Mon, 15 Sep 2014 14:33:37 -0700 Subject: [PATCH] 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: 41625879f6f1 ("Input: introduce palmas-pwrbutton") Reported-by: Jim Davis Signed-off-by: Nishanth Menon Signed-off-by: Dmitry Torokhov --- drivers/input/misc/palmas-pwrbutton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/misc/palmas-pwrbutton.c b/drivers/input/misc/palmas-pwrbutton.c index 766f594b45e22..f505ac3a8d87b 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."); -- 2.39.5