]> git.baikalelectronics.ru Git - kernel.git/commitdiff
i2c: acorn: add MODULE_LICENSE tag
authorArnd Bergmann <arnd@arndb.de>
Mon, 15 Jan 2018 20:28:39 +0000 (21:28 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 17 Jan 2018 23:05:58 +0000 (00:05 +0100)
As of v4.15, Kbuild warns about missing MODULE_LICENSE tags:

WARNING: modpost: missing MODULE_LICENSE() in drivers/i2c/busses/i2c-acorn.o

This adds a license, author and description tag, matching the
comment at the start of the acorn i2c driver.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-acorn.c

index 9d7be5af2bf2a037ffb93a1e2ca60bc8f0299583..a6f22d30a288af3d6d2afbd1a4ddbe4924703199 100644 (file)
@@ -94,3 +94,7 @@ static int __init i2c_ioc_init(void)
 }
 
 module_init(i2c_ioc_init);
+
+MODULE_AUTHOR("Russell King <linux@armlinux.org.uk>");
+MODULE_DESCRIPTION("ARM IOC/IOMD i2c driver");
+MODULE_LICENSE("GPL v2");