]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
soc: qcom: spm: add missing MODULE_DESCRIPTION()
authorJeff Johnson <quic_jjohnson@quicinc.com>
Tue, 4 Jun 2024 00:09:34 +0000 (17:09 -0700)
committerBjorn Andersson <andersson@kernel.org>
Thu, 6 Jun 2024 03:02:16 +0000 (22:02 -0500)
make allmodconfig && make W=1 C=1 warns:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/qcom/spm.o

Add the missing MODULE_DESCRIPTION(), using the same description as
the underlying QCOM_SPM Kconfig item.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20240603-md-soc-qcom-spm-v1-1-617730f08d22@quicinc.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
drivers/soc/qcom/spm.c

index 06e2c4c2a4a82a89025f6786b39d0a98116e8512..f75659fff2874fb6a29c48ceee862b05b1ba5802 100644 (file)
@@ -572,4 +572,5 @@ static int __init qcom_spm_init(void)
 }
 arch_initcall(qcom_spm_init);
 
+MODULE_DESCRIPTION("Qualcomm Subsystem Power Manager (SPM)");
 MODULE_LICENSE("GPL v2");