diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-16 17:58:33 -0700 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-06-28 13:03:13 +0530 |
commit | 4db6b030257283166a11de3731a39f4f7ab9656e (patch) | |
tree | a50c280e82a9079cbfdd789e7675e059e2a0a6b9 /drivers/dma | |
parent | 372f8b3621294173f539b32976e41e6e12f5decf (diff) | |
download | lwn-4db6b030257283166a11de3731a39f4f7ab9656e.tar.gz lwn-4db6b030257283166a11de3731a39f4f7ab9656e.zip |
dmaengine: virt-dma: add missing MODULE_DESCRIPTION() macro
With ARCH=loongarch, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/virt-dma.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240616-md-loongarch-drivers-dma-virt-dma-v1-1-70ed3dcbf8aa@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/virt-dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/virt-dma.c b/drivers/dma/virt-dma.c index a6f4265be0c9..7961172a780d 100644 --- a/drivers/dma/virt-dma.c +++ b/drivers/dma/virt-dma.c @@ -139,4 +139,5 @@ void vchan_init(struct virt_dma_chan *vc, struct dma_device *dmadev) EXPORT_SYMBOL_GPL(vchan_init); MODULE_AUTHOR("Russell King"); +MODULE_DESCRIPTION("Virtual DMA channel support for DMAengine"); MODULE_LICENSE("GPL"); |