diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-07-19 04:43:49 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-07-24 02:25:17 -0400 |
commit | e94570a36bda79b9f87abd283d7277b6a92c508d (patch) | |
tree | 88220062bacee8c460cf413f48a77a3d8191785d | |
parent | d8cc38dd965d6b2ea657c142d4fd0a0a3ba9dec4 (diff) |
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 <arnd@arndb.de>
Acked-by: Kedareswara rao Appana <appanad@xilinx.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/xilinx/zynqmp_dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 = { | |||
1146 | 1146 | ||
1147 | module_platform_driver(zynqmp_dma_driver); | 1147 | module_platform_driver(zynqmp_dma_driver); |
1148 | 1148 | ||
1149 | MODULE_LICENSE("GPL"); | ||
1149 | MODULE_AUTHOR("Xilinx, Inc."); | 1150 | MODULE_AUTHOR("Xilinx, Inc."); |
1150 | MODULE_DESCRIPTION("Xilinx ZynqMP DMA driver"); | 1151 | MODULE_DESCRIPTION("Xilinx ZynqMP DMA driver"); |