]> Git Repo - J-linux.git/commitdiff
soc: add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <[email protected]>
Tue, 25 Jun 2024 17:04:15 +0000 (10:04 -0700)
committerArnd Bergmann <[email protected]>
Thu, 27 Jun 2024 14:42:50 +0000 (16:42 +0200)
With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/imx/soc-imx8m.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/ixp4xx/ixp4xx-qmgr.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/ixp4xx/ixp4xx-npe.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/mediatek/mtk-cmdq-helper.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/soc/amlogic/meson-clk-measure.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Reviewed-by: Linus Walleij <[email protected]>
Acked-by: Shawn Guo <[email protected]>
Reviewed-by: AngeloGioacchino Del Regno <[email protected]>
Reviewed-by: Neil Armstrong <[email protected]> # for amlogic/meson-clk-measure.c
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnd Bergmann <[email protected]>
drivers/soc/amlogic/meson-clk-measure.c
drivers/soc/imx/soc-imx8m.c
drivers/soc/ixp4xx/ixp4xx-npe.c
drivers/soc/ixp4xx/ixp4xx-qmgr.c
drivers/soc/mediatek/mtk-cmdq-helper.c

index 3f3039600357031637d1051555d576e38f8cfcdd..a6453ffeb7532eabcfdaaca30a8f65eab9651455 100644 (file)
@@ -688,4 +688,5 @@ static struct platform_driver meson_msr_driver = {
        },
 };
 module_platform_driver(meson_msr_driver);
+MODULE_DESCRIPTION("Amlogic Meson SoC Clock Measure driver");
 MODULE_LICENSE("GPL v2");
index ec87d9d878f30de6b2cc0c63d575059360ee8798..fe111bae38c8e12fc17a3567ac8e0825f013e3f1 100644 (file)
@@ -252,4 +252,5 @@ free_soc:
        return ret;
 }
 device_initcall(imx8_soc_init);
+MODULE_DESCRIPTION("NXP i.MX8M SoC driver");
 MODULE_LICENSE("GPL");
index 35825ee95dff24f6792d2e9264f7ea7c4769be44..34a6f187c220d48a93f47b51d07d0fc4238b87a2 100644 (file)
@@ -764,6 +764,7 @@ static struct platform_driver ixp4xx_npe_driver = {
 module_platform_driver(ixp4xx_npe_driver);
 
 MODULE_AUTHOR("Krzysztof Halasa");
+MODULE_DESCRIPTION("Intel IXP4xx Network Processor Engine driver");
 MODULE_LICENSE("GPL v2");
 MODULE_FIRMWARE(NPE_A_FIRMWARE);
 MODULE_FIRMWARE(NPE_B_FIRMWARE);
index 244ad8d7e80ba9e636374f02a5d34a71755ec89c..cb112f3643e97580e7401d76fcc2d57f048ab9cb 100644 (file)
@@ -465,6 +465,7 @@ static struct platform_driver ixp4xx_qmgr_driver = {
 };
 module_platform_driver(ixp4xx_qmgr_driver);
 
+MODULE_DESCRIPTION("Intel IXP4xx Queue Manager driver");
 MODULE_LICENSE("GPL v2");
 MODULE_AUTHOR("Krzysztof Halasa");
 
index 046522664dc19c1d065c65ab04fd1af19279d9ca..dd70d4d2bed74269c78afdcc707928548083d719 100644 (file)
@@ -526,4 +526,5 @@ int cmdq_pkt_finalize(struct cmdq_pkt *pkt)
 }
 EXPORT_SYMBOL(cmdq_pkt_finalize);
 
+MODULE_DESCRIPTION("MediaTek Command Queue (CMDQ) driver");
 MODULE_LICENSE("GPL v2");
This page took 0.06272 seconds and 4 git commands to generate.