From: Jeff Johnson Date: Sun, 2 Jun 2024 15:26:47 +0000 (-0700) Subject: clk: sprd: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~109^2~2^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=578ba5d37de7e7b6fa160280ff1d14266b23537e;p=thirdparty%2Fkernel%2Flinux.git clk: sprd: add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/sprd/clk-sprd.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson Link: https://lore.kernel.org/r/20240602-md-clk-sprd-v1-1-de0884ea6fc7@quicinc.com Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/sprd/common.c b/drivers/clk/sprd/common.c index 762f0961f17fc..0f218161704f8 100644 --- a/drivers/clk/sprd/common.c +++ b/drivers/clk/sprd/common.c @@ -109,4 +109,5 @@ int sprd_clk_probe(struct device *dev, struct clk_hw_onecell_data *clkhw) } EXPORT_SYMBOL_GPL(sprd_clk_probe); +MODULE_DESCRIPTION("Spreadtrum clock infrastructure"); MODULE_LICENSE("GPL v2");