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

dmaengine: qcom: add missing MODULE_DESCRIPTION() macros

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o

Add the missing invocations of the MODULE_DESCRIPTION() macro, using
the descriptions from the associated Kconfig items.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Link: https://lore.kernel.org/r/20240603-md-drivers-dma-qcom-v1-1-d1bd919352bf@quicinc.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Jeff Johnson and committed by
Vinod Koul
8e9d83d7 ea00def5

+2
+1
drivers/dma/qcom/hidma.c
··· 957 957 }; 958 958 959 959 module_platform_driver(hidma_driver); 960 + MODULE_DESCRIPTION("Qualcomm Technologies HIDMA Channel support"); 960 961 MODULE_LICENSE("GPL v2");
+1
drivers/dma/qcom/hidma_mgmt.c
··· 331 331 }; 332 332 333 333 module_platform_driver(hidma_mgmt_driver); 334 + MODULE_DESCRIPTION("Qualcomm Technologies HIDMA DMA engine interface"); 334 335 MODULE_LICENSE("GPL v2");