linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro
@ 2024-06-13 21:55 Jeff Johnson
  2024-06-14  8:45 ` Sudeep Holla
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jeff Johnson @ 2024-06-13 21:55 UTC (permalink / raw)
  To: Linus Walleij, Michael Turquette, Stephen Boyd, Liviu Dudau,
	Sudeep Holla, Lorenzo Pieralisi
  Cc: linux-arm-kernel, linux-clk, linux-kernel, kernel-janitors,
	Jeff Johnson

With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/versatile/clk-vexpress-osc.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 drivers/clk/versatile/clk-vexpress-osc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/versatile/clk-vexpress-osc.c b/drivers/clk/versatile/clk-vexpress-osc.c
index b2b32fa2d7c3..c385ca2f4a74 100644
--- a/drivers/clk/versatile/clk-vexpress-osc.c
+++ b/drivers/clk/versatile/clk-vexpress-osc.c
@@ -119,4 +119,5 @@ static struct platform_driver vexpress_osc_driver = {
 	.probe = vexpress_osc_probe,
 };
 module_platform_driver(vexpress_osc_driver);
+MODULE_DESCRIPTION("Clock driver for Versatile Express OSC clock generators");
 MODULE_LICENSE("GPL v2");

---
base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
change-id: 20240613-md-arm64-drivers-clk-versatile-a0b6a3327f48



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro
  2024-06-13 21:55 [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-14  8:45 ` Sudeep Holla
  2024-06-18 10:22 ` Linus Walleij
  2024-07-02 22:57 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Sudeep Holla @ 2024-06-14  8:45 UTC (permalink / raw)
  To: Jeff Johnson
  Cc: Linus Walleij, Sudeep Holla, Michael Turquette, Stephen Boyd,
	Liviu Dudau, Lorenzo Pieralisi, linux-arm-kernel, linux-clk,
	linux-kernel, kernel-janitors

On Thu, Jun 13, 2024 at 02:55:17PM -0700, Jeff Johnson wrote:
> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/versatile/clk-vexpress-osc.o
> 
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>

Acked-by: Sudeep Holla <sudeep.holla@arm.com>

Stephen,

I assume you will pick this up.

-- 
Regards,
Sudeep


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro
  2024-06-13 21:55 [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro Jeff Johnson
  2024-06-14  8:45 ` Sudeep Holla
@ 2024-06-18 10:22 ` Linus Walleij
  2024-07-02 22:57 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2024-06-18 10:22 UTC (permalink / raw)
  To: Jeff Johnson
  Cc: Michael Turquette, Stephen Boyd, Liviu Dudau, Sudeep Holla,
	Lorenzo Pieralisi, linux-arm-kernel, linux-clk, linux-kernel,
	kernel-janitors

On Thu, Jun 13, 2024 at 11:55 PM Jeff Johnson <quic_jjohnson@quicinc.com> wrote:

> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/versatile/clk-vexpress-osc.o
>
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro
  2024-06-13 21:55 [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro Jeff Johnson
  2024-06-14  8:45 ` Sudeep Holla
  2024-06-18 10:22 ` Linus Walleij
@ 2024-07-02 22:57 ` Stephen Boyd
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2024-07-02 22:57 UTC (permalink / raw)
  To: Jeff Johnson, Linus Walleij, Liviu Dudau, Lorenzo Pieralisi,
	Michael Turquette, Sudeep Holla
  Cc: linux-arm-kernel, linux-clk, linux-kernel, kernel-janitors,
	Jeff Johnson

Quoting Jeff Johnson (2024-06-13 14:55:17)
> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/clk/versatile/clk-vexpress-osc.o
> 
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---

Applied to clk-next


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-07-02 22:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-13 21:55 [PATCH] clk: vexpress-osc: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-14  8:45 ` Sudeep Holla
2024-06-18 10:22 ` Linus Walleij
2024-07-02 22:57 ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).