Skip to content

Commit 61879ff

Browse files
Jeff Johnsonvinodkoul
authored andcommitted
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>
1 parent 6c026a3 commit 61879ff

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

drivers/dma/ti/k3-psil.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,5 @@ int psil_set_new_ep_config(struct device *dev, const char *name,
106106
return 0;
107107
}
108108
EXPORT_SYMBOL_GPL(psil_set_new_ep_config);
109+
MODULE_DESCRIPTION("K3 PSI-L endpoint configuration");
109110
MODULE_LICENSE("GPL v2");

drivers/dma/ti/k3-udma-glue.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1574,4 +1574,5 @@ static int __init k3_udma_glue_class_init(void)
15741574
}
15751575

15761576
module_init(k3_udma_glue_class_init);
1577+
MODULE_DESCRIPTION("TI K3 NAVSS DMA glue interface");
15771578
MODULE_LICENSE("GPL v2");

drivers/dma/ti/k3-udma.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5624,6 +5624,7 @@ static struct platform_driver udma_driver = {
56245624
};
56255625

56265626
module_platform_driver(udma_driver);
5627+
MODULE_DESCRIPTION("Texas Instruments UDMA support");
56275628
MODULE_LICENSE("GPL v2");
56285629

56295630
/* Private interfaces to UDMA */

0 commit comments

Comments
 (0)