]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
clk: qcom: add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <quic_jjohnson@quicinc.com>
Fri, 17 May 2024 00:19:10 +0000 (17:19 -0700)
committerBjorn Andersson <andersson@kernel.org>
Mon, 27 May 2024 03:13:01 +0000 (22:13 -0500)
Fix the following from 'make W=1' with allmodconfig:

WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/qcom/clk-qcom.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/qcom/gcc-msm8976.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/qcom/lpass-gfm-sm8250.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/qcom/videocc-sdm845.o

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240516-qcom-clk-md-v1-1-baca27dd2fb2@quicinc.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
drivers/clk/qcom/common.c
drivers/clk/qcom/gcc-msm8976.c
drivers/clk/qcom/lpass-gfm-sm8250.c
drivers/clk/qcom/videocc-sdm845.c

index 48f81e3a5e8029bd9a1e76dba794997bf676e8c4..1e79f05d52265ed83ca94f0b31792281ccb74dd0 100644 (file)
@@ -356,3 +356,4 @@ int qcom_cc_probe_by_index(struct platform_device *pdev, int index,
 EXPORT_SYMBOL_GPL(qcom_cc_probe_by_index);
 
 MODULE_LICENSE("GPL v2");
+MODULE_DESCRIPTION("QTI Common Clock module");
index f60a8171972b87fa136b78093dcd40be4ab866d5..7fac0ca594aaf22c1120f88cc99d2259f4d45a18 100644 (file)
@@ -4154,3 +4154,4 @@ module_exit(gcc_msm8976_exit);
 
 MODULE_AUTHOR("AngeloGioacchino Del Regno <angelogioacchino.delregno@somainline.org>");
 MODULE_LICENSE("GPL v2");
+MODULE_DESCRIPTION("QTI MSM8996 Global Clock Controller");
index 8a1ee52cbcc38c2d40a9bb5a20d81d4b962770eb..65d380e30eed98b046733ae3380f2931ceb158cd 100644 (file)
@@ -315,3 +315,4 @@ static struct platform_driver lpass_gfm_clk_driver = {
 };
 module_platform_driver(lpass_gfm_clk_driver);
 MODULE_LICENSE("GPL v2");
+MODULE_DESCRIPTION("QTI SM8250 LPASS Glitch Free Mux clock driver");
index b7f21ecad9612f789ad9eebc3cdbd7f3bab2fc4f..80095a283a86cefbf049c1cd77fe8bbca5a1f916 100644 (file)
@@ -343,3 +343,4 @@ static struct platform_driver video_cc_sdm845_driver = {
 module_platform_driver(video_cc_sdm845_driver);
 
 MODULE_LICENSE("GPL v2");
+MODULE_DESCRIPTION("QTI SDM845 VIDEOCC Driver");