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

dmaengine: ti: add missing MODULE_DESCRIPTION() macros

With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ti/k3-udma.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ti/k3-udma-glue.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/ti/k3-psil-lib.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240613-md-arm64-drivers-dma-ti-v1-1-b1154603f341@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Jeff Johnson and committed by
Vinod Koul
61879ffd 6c026a3e

+3
+1
drivers/dma/ti/k3-psil.c
··· 106 106 return 0; 107 107 } 108 108 EXPORT_SYMBOL_GPL(psil_set_new_ep_config); 109 + MODULE_DESCRIPTION("K3 PSI-L endpoint configuration"); 109 110 MODULE_LICENSE("GPL v2");
+1
drivers/dma/ti/k3-udma-glue.c
··· 1574 1574 } 1575 1575 1576 1576 module_init(k3_udma_glue_class_init); 1577 + MODULE_DESCRIPTION("TI K3 NAVSS DMA glue interface"); 1577 1578 MODULE_LICENSE("GPL v2");
+1
drivers/dma/ti/k3-udma.c
··· 5624 5624 }; 5625 5625 5626 5626 module_platform_driver(udma_driver); 5627 + MODULE_DESCRIPTION("Texas Instruments UDMA support"); 5627 5628 MODULE_LICENSE("GPL v2"); 5628 5629 5629 5630 /* Private interfaces to UDMA */