From: Arnd Bergmann Date: Mon, 15 Jan 2018 20:28:39 +0000 (+0100) Subject: i2c: acorn: add MODULE_LICENSE tag X-Git-Tag: v4.16-rc1~77^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e199c285b66705bec2f63a9230f50dadfa6dc0fb;p=thirdparty%2Fkernel%2Flinux.git i2c: acorn: add MODULE_LICENSE tag 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 Signed-off-by: Wolfram Sang --- diff --git a/drivers/i2c/busses/i2c-acorn.c b/drivers/i2c/busses/i2c-acorn.c index 9d7be5af2bf2a..a6f22d30a288a 100644 --- a/drivers/i2c/busses/i2c-acorn.c +++ b/drivers/i2c/busses/i2c-acorn.c @@ -94,3 +94,7 @@ static int __init i2c_ioc_init(void) } module_init(i2c_ioc_init); + +MODULE_AUTHOR("Russell King "); +MODULE_DESCRIPTION("ARM IOC/IOMD i2c driver"); +MODULE_LICENSE("GPL v2");