From: Enric Balletbo i Serra Date: Wed, 6 Jun 2018 15:08:55 +0000 (+0200) Subject: extcon: usbc-cros-ec: Make license text and module license match. X-Git-Tag: v5.15~8190^2~47^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=686b30580058fa546035537bb4898b8ac3ae9561;p=platform%2Fkernel%2Flinux-starfive.git extcon: usbc-cros-ec: Make license text and module license match. The license text is specifying "GPLv2" but the MODULE_LICENSE is set to GPL which means GNU Public License v2 or later. When MODULE_LICENSE and boiler plate does not match, go for boiler plate license. Signed-off-by: Enric Balletbo i Serra Signed-off-by: Chanwoo Choi --- diff --git a/drivers/extcon/extcon-usbc-cros-ec.c b/drivers/extcon/extcon-usbc-cros-ec.c index 6721ab0..a5b75a1 100644 --- a/drivers/extcon/extcon-usbc-cros-ec.c +++ b/drivers/extcon/extcon-usbc-cros-ec.c @@ -548,4 +548,4 @@ module_platform_driver(extcon_cros_ec_driver); MODULE_DESCRIPTION("ChromeOS Embedded Controller extcon driver"); MODULE_AUTHOR("Benson Leung "); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("GPL v2");