]> www.infradead.org Git - nvme.git/commitdiff
dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <quic_jjohnson@quicinc.com>
Mon, 3 Jun 2024 17:06:42 +0000 (10:06 -0700)
committerVinod Koul <vkoul@kernel.org>
Fri, 7 Jun 2024 17:45:55 +0000 (23:15 +0530)
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>
drivers/dma/qcom/hidma.c
drivers/dma/qcom/hidma_mgmt.c

index 721b4ac0857aaa224bb8f7c38697d266b8531d15..4d2cd8d9ec74a157e206c7662a365643ed7f9ab5 100644 (file)
@@ -957,4 +957,5 @@ static struct platform_driver hidma_driver = {
 };
 
 module_platform_driver(hidma_driver);
+MODULE_DESCRIPTION("Qualcomm Technologies HIDMA Channel support");
 MODULE_LICENSE("GPL v2");
index bb883e138ebfb9e2808e92e569c1cb48c32c349d..4805ce390ffac88ce608c212fef493ea89d58ced 100644 (file)
@@ -331,4 +331,5 @@ static struct platform_driver hidma_mgmt_driver = {
 };
 
 module_platform_driver(hidma_mgmt_driver);
+MODULE_DESCRIPTION("Qualcomm Technologies HIDMA DMA engine interface");
 MODULE_LICENSE("GPL v2");