From: Arnd Bergmann Date: Tue, 19 Jul 2016 08:43:49 +0000 (+0200) Subject: dmaengine: zynqmp_dma: add missing MODULE_LICENSE X-Git-Tag: v4.8-rc1~117^2~2 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=e94570a36bda79b9f87abd283d7277b6a92c508d;p=cascardo%2Flinux.git dmaengine: zynqmp_dma: add missing MODULE_LICENSE We get a warning about the missing MODULE_LICENSE tag for this newly added driver module: WARNING: modpost: missing MODULE_LICENSE() in drivers/dma/xilinx/zynqmp_dma.o see include/linux/module.h for more information This adds a "GPL" license, matching the "version 2 or later" information in the comment at the start of the file. Signed-off-by: Arnd Bergmann Acked-by: Kedareswara rao Appana Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/xilinx/zynqmp_dma.c b/drivers/dma/xilinx/zynqmp_dma.c index b18d51f7f38c..6d221e5c72ee 100644 --- a/drivers/dma/xilinx/zynqmp_dma.c +++ b/drivers/dma/xilinx/zynqmp_dma.c @@ -1146,5 +1146,6 @@ static struct platform_driver zynqmp_dma_driver = { module_platform_driver(zynqmp_dma_driver); +MODULE_LICENSE("GPL"); MODULE_AUTHOR("Xilinx, Inc."); MODULE_DESCRIPTION("Xilinx ZynqMP DMA driver");