* [PATCH] clk: rockchip: remove unused mclk_pdm0_p/pdm0_p definitions
@ 2024-09-09 12:11 Arnd Bergmann
2024-09-09 21:10 ` Stephen Boyd
0 siblings, 1 reply; 2+ messages in thread
From: Arnd Bergmann @ 2024-09-09 12:11 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Heiko Stuebner
Cc: Arnd Bergmann, Elaine Zhang, YouMin Chen, Detlev Casanova,
Sugar Zhang, linux-clk, linux-arm-kernel, linux-rockchip,
linux-kernel
From: Arnd Bergmann <arnd@arndb.de>
When -Wunused-const-variable is enabled (not the default),
there is a warning about two definitions in this file:
In file included from drivers/clk/rockchip/clk-rk3576.c:14:
drivers/clk/rockchip/clk-rk3576.c:334:7: error: 'mclk_pdm0_p' defined but not used [-Werror=unused-const-variable=]
334 | PNAME(mclk_pdm0_p) = { "mclk_pdm0_src_top", "xin24m" };
| ^~~~~~~~~~~
drivers/clk/rockchip/clk.h:564:43: note: in definition of macro 'PNAME'
564 | #define PNAME(x) static const char *const x[] __initconst
| ^
drivers/clk/rockchip/clk-rk3576.c:333:7: error: 'pdm0_p' defined but not used [-Werror=unused-const-variable=]
333 | PNAME(pdm0_p) = { "clk_pdm0_src_top", "xin24m" };
| ^~~~~~
drivers/clk/rockchip/clk.h:564:43: note: in definition of macro 'PNAME'
564 | #define PNAME(x) static const char *const x[] __initconst
| ^
Remove them for the moment. If they are needed later, they can
be added back at that point.
Fixes: cc40f5baa91b ("clk: rockchip: Add clock controller for the RK3576")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/clk/rockchip/clk-rk3576.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/clk/rockchip/clk-rk3576.c b/drivers/clk/rockchip/clk-rk3576.c
index 4de05b208771..595e010341f7 100644
--- a/drivers/clk/rockchip/clk-rk3576.c
+++ b/drivers/clk/rockchip/clk-rk3576.c
@@ -330,8 +330,6 @@ PNAME(mclk_sai7_8ch_p) = { "mclk_sai7_8ch_src", "sai1_mclkin" };
PNAME(mclk_sai8_8ch_p) = { "mclk_sai8_8ch_src", "sai1_mclkin" };
PNAME(mclk_sai9_8ch_p) = { "mclk_sai9_8ch_src", "sai1_mclkin" };
PNAME(uart1_p) = { "clk_uart1_src_top", "xin24m" };
-PNAME(pdm0_p) = { "clk_pdm0_src_top", "xin24m" };
-PNAME(mclk_pdm0_p) = { "mclk_pdm0_src_top", "xin24m" };
PNAME(clk_gmac1_ptp_ref_src_p) = { "gpll", "cpll", "gmac1_ptp_refclk_in" };
PNAME(clk_gmac0_ptp_ref_src_p) = { "gpll", "cpll", "gmac0_ptp_refclk_in" };
PNAME(dclk_ebc_p) = { "gpll", "cpll", "vpll", "aupll", "lpll_dummy",
--
2.39.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] clk: rockchip: remove unused mclk_pdm0_p/pdm0_p definitions
2024-09-09 12:11 [PATCH] clk: rockchip: remove unused mclk_pdm0_p/pdm0_p definitions Arnd Bergmann
@ 2024-09-09 21:10 ` Stephen Boyd
0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2024-09-09 21:10 UTC (permalink / raw)
To: Arnd Bergmann, Heiko Stuebner, Michael Turquette
Cc: Arnd Bergmann, Elaine Zhang, YouMin Chen, Detlev Casanova,
Sugar Zhang, linux-clk, linux-arm-kernel, linux-rockchip,
linux-kernel
Quoting Arnd Bergmann (2024-09-09 05:11:05)
> From: Arnd Bergmann <arnd@arndb.de>
>
> When -Wunused-const-variable is enabled (not the default),
> there is a warning about two definitions in this file:
>
> In file included from drivers/clk/rockchip/clk-rk3576.c:14:
> drivers/clk/rockchip/clk-rk3576.c:334:7: error: 'mclk_pdm0_p' defined but not used [-Werror=unused-const-variable=]
> 334 | PNAME(mclk_pdm0_p) = { "mclk_pdm0_src_top", "xin24m" };
> | ^~~~~~~~~~~
> drivers/clk/rockchip/clk.h:564:43: note: in definition of macro 'PNAME'
> 564 | #define PNAME(x) static const char *const x[] __initconst
> | ^
> drivers/clk/rockchip/clk-rk3576.c:333:7: error: 'pdm0_p' defined but not used [-Werror=unused-const-variable=]
> 333 | PNAME(pdm0_p) = { "clk_pdm0_src_top", "xin24m" };
> | ^~~~~~
> drivers/clk/rockchip/clk.h:564:43: note: in definition of macro 'PNAME'
> 564 | #define PNAME(x) static const char *const x[] __initconst
> | ^
>
> Remove them for the moment. If they are needed later, they can
> be added back at that point.
>
> Fixes: cc40f5baa91b ("clk: rockchip: Add clock controller for the RK3576")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
Applied to clk-next
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-09 21:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-09 12:11 [PATCH] clk: rockchip: remove unused mclk_pdm0_p/pdm0_p definitions Arnd Bergmann
2024-09-09 21:10 ` Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox