From: Arnd Bergmann Date: Fri, 30 Jan 2015 21:57:01 +0000 (+0100) Subject: net: hip04: add missing MODULE_LICENSE X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4c0c46be90b0316a75a6d0c44bf3f62152c6963f;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git net: hip04: add missing MODULE_LICENSE The hip04 ethernet driver causes a new compile-time warning when built as a loadable module: WARNING: modpost: missing MODULE_LICENSE() in drivers/net/ethernet/hisilicon/hip04_eth.o see include/linux/module.h for more information This adds the license as "GPL", which matches the header of the file. Signed-off-by: Arnd Bergmann Acked-by: Ding Tianhong Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/hisilicon/hip04_eth.c b/drivers/net/ethernet/hisilicon/hip04_eth.c index c02b81bcfffb..b72d238695d7 100644 --- a/drivers/net/ethernet/hisilicon/hip04_eth.c +++ b/drivers/net/ethernet/hisilicon/hip04_eth.c @@ -968,3 +968,4 @@ static struct platform_driver hip04_mac_driver = { module_platform_driver(hip04_mac_driver); MODULE_DESCRIPTION("HISILICON P04 Ethernet driver"); +MODULE_LICENSE("GPL");