gpio: uniphier: fix mismatch between license text and MODULE_LICENSE
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 23 Nov 2017 10:01:49 +0000 (19:01 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 30 Nov 2017 14:37:42 +0000 (15:37 +0100)
The comment block of this file indicates GPL-2.0 "only", while the
MODULE_LICENSE is GPL-2.0 "or later", as include/linux/module.h
describes as follows:

  "GPL"                           [GNU Public License v2 or later]
  "GPL v2"                        [GNU Public License v2]

I am the author of this driver, and my intention is GPL-2.0 "only".

Fixes: dbe776c2ca54 ("gpio: uniphier: add UniPhier GPIO controller driver")
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-uniphier.c

index 016d7427ebfac16afee833a60959c2fe87f5a75d..761d8279abca20b4cad83a54c8ace87ee38de8e8 100644 (file)
@@ -505,4 +505,4 @@ module_platform_driver(uniphier_gpio_driver);
 
 MODULE_AUTHOR("Masahiro Yamada <yamada.masahiro@socionext.com>");
 MODULE_DESCRIPTION("UniPhier GPIO driver");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");