diff mbox series

gpio: iop: add MODULE_LICENSE

Message ID 20171201021023.25054-1-dja@axtens.net
State New
Headers show
Series gpio: iop: add MODULE_LICENSE | expand

Commit Message

Daniel Axtens Dec. 1, 2017, 2:10 a.m. UTC
This fixes the following warning in an allmodconfig build:
WARNING: modpost: missing MODULE_LICENSE() in drivers/gpio/gpio-iop.o

Signed-off-by: Daniel Axtens <dja@axtens.net>
---
 drivers/gpio/gpio-iop.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Linus Walleij Dec. 2, 2017, 3:47 p.m. UTC | #1
On Fri, Dec 1, 2017 at 3:10 AM, Daniel Axtens <dja@axtens.net> wrote:

> This fixes the following warning in an allmodconfig build:
> WARNING: modpost: missing MODULE_LICENSE() in drivers/gpio/gpio-iop.o
>
> Signed-off-by: Daniel Axtens <dja@axtens.net>

Someone else patche this too!

Thanks anyways!

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-iop.c b/drivers/gpio/gpio-iop.c
index 98c7ff2a76e7..8a19143e865b 100644
--- a/drivers/gpio/gpio-iop.c
+++ b/drivers/gpio/gpio-iop.c
@@ -58,3 +58,5 @@  static int __init iop3xx_gpio_init(void)
 	return platform_driver_register(&iop3xx_gpio_driver);
 }
 arch_initcall(iop3xx_gpio_init);
+
+MODULE_LICENSE("GPL");