Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Jeff Johnson and committed by
Vinod Koul
4db6b030 372f8b36

+1
+1
drivers/dma/virt-dma.c
··· 139 139 EXPORT_SYMBOL_GPL(vchan_init); 140 140 141 141 MODULE_AUTHOR("Russell King"); 142 + MODULE_DESCRIPTION("Virtual DMA channel support for DMAengine"); 142 143 MODULE_LICENSE("GPL");