diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-06 22:00:01 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-06-07 19:14:48 +0200 |
commit | 6e2fb806e08d46cbeb96c1000ef531a92d3b2e9a (patch) | |
tree | 9a9fc8a04ddc0226a198b90271dbfb6be1bf81fb /drivers/dma/ioat | |
parent | Linux 6.10-rc1 (diff) | |
download | linux-6e2fb806e08d46cbeb96c1000ef531a92d3b2e9a.tar.xz linux-6e2fb806e08d46cbeb96c1000ef531a92d3b2e9a.zip |
dmaengine: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/idxd/idxd.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ti/omap-dma.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/dmatest.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ioat/ioatdma.o
Add the missing invocations of the MODULE_DESCRIPTION() macro.
Acked-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240606-md-drivers-dma-v2-1-0770dfdf74dd@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/ioat')
-rw-r--r-- | drivers/dma/ioat/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/ioat/init.c b/drivers/dma/ioat/init.c index 9c364e92cb82..d84d95321f43 100644 --- a/drivers/dma/ioat/init.c +++ b/drivers/dma/ioat/init.c @@ -23,6 +23,7 @@ #include "../dmaengine.h" MODULE_VERSION(IOAT_DMA_VERSION); +MODULE_DESCRIPTION("Intel I/OAT DMA Linux driver"); MODULE_LICENSE("Dual BSD/GPL"); MODULE_AUTHOR("Intel Corporation"); |