From: Linus Walleij Date: Tue, 13 Sep 2016 11:43:34 +0000 (+0200) Subject: gpio: aspeed: add MODULE_LICENSE() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e50237c7c298f7966f8445efc7119f87d3add484;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git gpio: aspeed: add MODULE_LICENSE() The build complains about missing MODULE_LICENSE() in the Aspeed GPIO driver. The license is evident from the file header, put in "GPL". Reported-by: Stephen Rothwell Cc: Alistair Popple Cc: Jeremy Kerr Cc: Andrew Jeffery Acked-by: Joel Stanley Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c index 64348a6fb60f..9f7266e05f0a 100644 --- a/drivers/gpio/gpio-aspeed.c +++ b/drivers/gpio/gpio-aspeed.c @@ -455,3 +455,4 @@ static struct platform_driver aspeed_gpio_driver = { module_platform_driver_probe(aspeed_gpio_driver, aspeed_gpio_probe); MODULE_DESCRIPTION("Aspeed GPIO Driver"); +MODULE_LICENSE("GPL");