* [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros
@ 2024-06-02 15:59 Jeff Johnson
2024-06-23 17:34 ` Jeff Johnson
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-06-02 15:59 UTC (permalink / raw)
To: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam
Cc: linux-clk, imx, linux-arm-kernel, linux-kernel, kernel-janitors,
Jeff Johnson
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 <quic_jjohnson@quicinc.com>
---
drivers/clk/imx/clk-imxrt1050.c | 1 +
drivers/clk/imx/clk.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/clk/imx/clk-imxrt1050.c b/drivers/clk/imx/clk-imxrt1050.c
index 08d155feb035..efd1ac9d8eeb 100644
--- a/drivers/clk/imx/clk-imxrt1050.c
+++ b/drivers/clk/imx/clk-imxrt1050.c
@@ -176,6 +176,7 @@ static struct platform_driver imxrt1050_clk_driver = {
};
module_platform_driver(imxrt1050_clk_driver);
+MODULE_DESCRIPTION("NXP i.MX RT1050 clock driver");
MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("Jesse Taube <Mr.Bossman075@gmail.com>");
MODULE_AUTHOR("Giulio Benetti <giulio.benetti@benettiengineering.com>");
diff --git a/drivers/clk/imx/clk.c b/drivers/clk/imx/clk.c
index e35496af5ceb..df83bd939492 100644
--- a/drivers/clk/imx/clk.c
+++ b/drivers/clk/imx/clk.c
@@ -226,4 +226,5 @@ static int __init imx_clk_disable_uart(void)
late_initcall_sync(imx_clk_disable_uart);
#endif
+MODULE_DESCRIPTION("Common clock support for NXP i.MX SoC family");
MODULE_LICENSE("GPL v2");
---
base-commit: 83814698cf48ce3aadc5d88a3f577f04482ff92a
change-id: 20240602-md-clk-imx-370fc1d85ab5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros
2024-06-02 15:59 [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros Jeff Johnson
@ 2024-06-23 17:34 ` Jeff Johnson
2024-06-24 9:05 ` Abel Vesa
2024-06-24 13:05 ` Abel Vesa
2 siblings, 0 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-06-23 17:34 UTC (permalink / raw)
To: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam
Cc: linux-clk, imx, linux-arm-kernel, linux-kernel, kernel-janitors
On 6/2/2024 8:59 AM, Jeff Johnson wrote:
> 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 <quic_jjohnson@quicinc.com>
> ---
> drivers/clk/imx/clk-imxrt1050.c | 1 +
> drivers/clk/imx/clk.c | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/drivers/clk/imx/clk-imxrt1050.c b/drivers/clk/imx/clk-imxrt1050.c
> index 08d155feb035..efd1ac9d8eeb 100644
> --- a/drivers/clk/imx/clk-imxrt1050.c
> +++ b/drivers/clk/imx/clk-imxrt1050.c
> @@ -176,6 +176,7 @@ static struct platform_driver imxrt1050_clk_driver = {
> };
> module_platform_driver(imxrt1050_clk_driver);
>
> +MODULE_DESCRIPTION("NXP i.MX RT1050 clock driver");
> MODULE_LICENSE("Dual BSD/GPL");
> MODULE_AUTHOR("Jesse Taube <Mr.Bossman075@gmail.com>");
> MODULE_AUTHOR("Giulio Benetti <giulio.benetti@benettiengineering.com>");
> diff --git a/drivers/clk/imx/clk.c b/drivers/clk/imx/clk.c
> index e35496af5ceb..df83bd939492 100644
> --- a/drivers/clk/imx/clk.c
> +++ b/drivers/clk/imx/clk.c
> @@ -226,4 +226,5 @@ static int __init imx_clk_disable_uart(void)
> late_initcall_sync(imx_clk_disable_uart);
> #endif
>
> +MODULE_DESCRIPTION("Common clock support for NXP i.MX SoC family");
> MODULE_LICENSE("GPL v2");
>
> ---
> base-commit: 83814698cf48ce3aadc5d88a3f577f04482ff92a
> change-id: 20240602-md-clk-imx-370fc1d85ab5
>
Following up to see if anything else is needed from me.
Hoping to see this in linux-next :)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros
2024-06-02 15:59 [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros Jeff Johnson
2024-06-23 17:34 ` Jeff Johnson
@ 2024-06-24 9:05 ` Abel Vesa
2024-06-24 13:05 ` Abel Vesa
2 siblings, 0 replies; 5+ messages in thread
From: Abel Vesa @ 2024-06-24 9:05 UTC (permalink / raw)
To: Jeff Johnson
Cc: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam, linux-clk,
imx, linux-arm-kernel, linux-kernel, kernel-janitors
On 24-06-02 08:59:17, Jeff Johnson wrote:
> 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 <quic_jjohnson@quicinc.com>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
> ---
> drivers/clk/imx/clk-imxrt1050.c | 1 +
> drivers/clk/imx/clk.c | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/drivers/clk/imx/clk-imxrt1050.c b/drivers/clk/imx/clk-imxrt1050.c
> index 08d155feb035..efd1ac9d8eeb 100644
> --- a/drivers/clk/imx/clk-imxrt1050.c
> +++ b/drivers/clk/imx/clk-imxrt1050.c
> @@ -176,6 +176,7 @@ static struct platform_driver imxrt1050_clk_driver = {
> };
> module_platform_driver(imxrt1050_clk_driver);
>
> +MODULE_DESCRIPTION("NXP i.MX RT1050 clock driver");
> MODULE_LICENSE("Dual BSD/GPL");
> MODULE_AUTHOR("Jesse Taube <Mr.Bossman075@gmail.com>");
> MODULE_AUTHOR("Giulio Benetti <giulio.benetti@benettiengineering.com>");
> diff --git a/drivers/clk/imx/clk.c b/drivers/clk/imx/clk.c
> index e35496af5ceb..df83bd939492 100644
> --- a/drivers/clk/imx/clk.c
> +++ b/drivers/clk/imx/clk.c
> @@ -226,4 +226,5 @@ static int __init imx_clk_disable_uart(void)
> late_initcall_sync(imx_clk_disable_uart);
> #endif
>
> +MODULE_DESCRIPTION("Common clock support for NXP i.MX SoC family");
> MODULE_LICENSE("GPL v2");
>
> ---
> base-commit: 83814698cf48ce3aadc5d88a3f577f04482ff92a
> change-id: 20240602-md-clk-imx-370fc1d85ab5
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros
2024-06-02 15:59 [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros Jeff Johnson
2024-06-23 17:34 ` Jeff Johnson
2024-06-24 9:05 ` Abel Vesa
@ 2024-06-24 13:05 ` Abel Vesa
2024-07-23 18:27 ` Jeff Johnson
2 siblings, 1 reply; 5+ messages in thread
From: Abel Vesa @ 2024-06-24 13:05 UTC (permalink / raw)
To: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd, Shawn Guo,
Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
Jeff Johnson
Cc: linux-clk, imx, linux-arm-kernel, linux-kernel, kernel-janitors
On Sun, 02 Jun 2024 08:59:17 -0700, Jeff Johnson wrote:
> 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.
>
>
> [...]
Applied, thanks!
[1/1] clk: imx: add missing MODULE_DESCRIPTION() macros
commit: 1919d77a9591aa692c8de11540ffc0e7d18eabb4
Best regards,
--
Abel Vesa <abel.vesa@linaro.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros
2024-06-24 13:05 ` Abel Vesa
@ 2024-07-23 18:27 ` Jeff Johnson
0 siblings, 0 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-07-23 18:27 UTC (permalink / raw)
To: Abel Vesa, Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd,
Shawn Guo, Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
Greg KH
Cc: linux-clk, imx, linux-arm-kernel, linux-kernel, kernel-janitors
On 6/24/2024 6:05 AM, Abel Vesa wrote:
>
> On Sun, 02 Jun 2024 08:59:17 -0700, Jeff Johnson wrote:
>> 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.
>>
>>
>> [...]
>
> Applied, thanks!
>
> [1/1] clk: imx: add missing MODULE_DESCRIPTION() macros
> commit: 1919d77a9591aa692c8de11540ffc0e7d18eabb4
Hi Abel,
I see this landed in linux-next, but is not currently in Linus' tree for 6.11.
Will you be able to have this pulled during the merge window?
I'm trying to eradicate all of these warnings before 6.11 rc-final.
Thanks!
/jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-07-23 18:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02 15:59 [PATCH] clk: imx: add missing MODULE_DESCRIPTION() macros Jeff Johnson
2024-06-23 17:34 ` Jeff Johnson
2024-06-24 9:05 ` Abel Vesa
2024-06-24 13:05 ` Abel Vesa
2024-07-23 18:27 ` Jeff Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox