Skip to content

Commit 1919d77

Browse files
Jeff Johnsonabelvesa
authored andcommitted
clk: imx: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/imx/mxc-clk.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/imx/clk-imxrt1050.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <[email protected]> Reviewed-by: Abel Vesa <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Abel Vesa <[email protected]>
1 parent ff06ea0 commit 1919d77

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/clk/imx/clk-imxrt1050.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ static struct platform_driver imxrt1050_clk_driver = {
176176
};
177177
module_platform_driver(imxrt1050_clk_driver);
178178

179+
MODULE_DESCRIPTION("NXP i.MX RT1050 clock driver");
179180
MODULE_LICENSE("Dual BSD/GPL");
180181
MODULE_AUTHOR("Jesse Taube <[email protected]>");
181182
MODULE_AUTHOR("Giulio Benetti <[email protected]>");

drivers/clk/imx/clk.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,5 @@ static int __init imx_clk_disable_uart(void)
226226
late_initcall_sync(imx_clk_disable_uart);
227227
#endif
228228

229+
MODULE_DESCRIPTION("Common clock support for NXP i.MX SoC family");
229230
MODULE_LICENSE("GPL v2");

0 commit comments

Comments
 (0)