* [PATCH] [v2] clk: meson: S4: select CONFIG_COMMON_CLK_MESON_CLKC_UTILS
@ 2023-10-23 10:28 Arnd Bergmann
2023-10-23 14:20 ` Jerome Brunet
0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2023-10-23 10:28 UTC (permalink / raw)
To: Neil Armstrong, Jerome Brunet, Michael Turquette, Stephen Boyd,
Kevin Hilman, Yu Tu
Cc: Arnd Bergmann, Martin Blumenstingl, Dmitry Rokosov, Jian Hu,
linux-amlogic, linux-clk, linux-arm-kernel, linux-kernel
From: Arnd Bergmann <arnd@arndb.de>
Without this, the newly added drivers fail to link:
aarch64-linux-ld: drivers/clk/meson/s4-pll.o: in function `meson_s4_pll_probe':
s4-pll.c:(.text+0x13c): undefined reference to `meson_clk_hw_get'
aarch64-linux-ld: drivers/clk/meson/s4-peripherals.o: in function `meson_s4_periphs_probe':
s4-peripherals.c:(.text+0xb0): undefined reference to `meson_clk_hw_get'
Fixes: e787c9c55edad ("clk: meson: S4: add support for Amlogic S4 SoC PLL clock driver")
Reviewed-by: Jerome Brunet <jbrunet@baylibre.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v2: fix up both drivers, the first version only addressed the s4-pll one.
---
drivers/clk/meson/Kconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/clk/meson/Kconfig b/drivers/clk/meson/Kconfig
index c5303e4c16043..29ffd14d267b6 100644
--- a/drivers/clk/meson/Kconfig
+++ b/drivers/clk/meson/Kconfig
@@ -149,6 +149,7 @@ config COMMON_CLK_S4_PLL
tristate "S4 SoC PLL clock controllers support"
depends on ARM64
default y
+ select COMMON_CLK_MESON_CLKC_UTILS
select COMMON_CLK_MESON_MPLL
select COMMON_CLK_MESON_PLL
select COMMON_CLK_MESON_REGMAP
@@ -161,6 +162,7 @@ config COMMON_CLK_S4_PERIPHERALS
tristate "S4 SoC peripherals clock controllers support"
depends on ARM64
default y
+ select COMMON_CLK_MESON_CLKC_UTILS
select COMMON_CLK_MESON_REGMAP
select COMMON_CLK_MESON_DUALDIV
select COMMON_CLK_MESON_VID_PLL_DIV
--
2.39.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] [v2] clk: meson: S4: select CONFIG_COMMON_CLK_MESON_CLKC_UTILS
2023-10-23 10:28 [PATCH] [v2] clk: meson: S4: select CONFIG_COMMON_CLK_MESON_CLKC_UTILS Arnd Bergmann
@ 2023-10-23 14:20 ` Jerome Brunet
2023-10-23 14:43 ` Arnd Bergmann
0 siblings, 1 reply; 3+ messages in thread
From: Jerome Brunet @ 2023-10-23 14:20 UTC (permalink / raw)
To: Arnd Bergmann, Neil Armstrong, Michael Turquette, Stephen Boyd,
Kevin Hilman, Yu Tu
Cc: Arnd Bergmann, Martin Blumenstingl, Dmitry Rokosov, Jian Hu,
linux-amlogic, linux-clk, linux-arm-kernel, linux-kernel
On Mon 23 Oct 2023 at 12:28, Arnd Bergmann <arnd@kernel.org> wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> Without this, the newly added drivers fail to link:
>
> aarch64-linux-ld: drivers/clk/meson/s4-pll.o: in function `meson_s4_pll_probe':
> s4-pll.c:(.text+0x13c): undefined reference to `meson_clk_hw_get'
> aarch64-linux-ld: drivers/clk/meson/s4-peripherals.o: in function `meson_s4_periphs_probe':
> s4-peripherals.c:(.text+0xb0): undefined reference to `meson_clk_hw_get'
>
> Fixes: e787c9c55edad ("clk: meson: S4: add support for Amlogic S4 SoC PLL clock driver")
> Reviewed-by: Jerome Brunet <jbrunet@baylibre.com>
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Applied fixing this minor checkpatch warning (1 extra char)
WARNING: Please use correct Fixes: style 'Fixes: <12 chars of sha1> ("<title line>")' - ie: 'Fixes: e787c9c55eda ("clk: meson: S4: add support for Amlogic S4 SoC PLL clock driver")'
and preparing the PR for Stephen now.
Thanks Arnd.
> ---
> v2: fix up both drivers, the first version only addressed the s4-pll one.
> ---
> drivers/clk/meson/Kconfig | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/clk/meson/Kconfig b/drivers/clk/meson/Kconfig
> index c5303e4c16043..29ffd14d267b6 100644
> --- a/drivers/clk/meson/Kconfig
> +++ b/drivers/clk/meson/Kconfig
> @@ -149,6 +149,7 @@ config COMMON_CLK_S4_PLL
> tristate "S4 SoC PLL clock controllers support"
> depends on ARM64
> default y
> + select COMMON_CLK_MESON_CLKC_UTILS
> select COMMON_CLK_MESON_MPLL
> select COMMON_CLK_MESON_PLL
> select COMMON_CLK_MESON_REGMAP
> @@ -161,6 +162,7 @@ config COMMON_CLK_S4_PERIPHERALS
> tristate "S4 SoC peripherals clock controllers support"
> depends on ARM64
> default y
> + select COMMON_CLK_MESON_CLKC_UTILS
> select COMMON_CLK_MESON_REGMAP
> select COMMON_CLK_MESON_DUALDIV
> select COMMON_CLK_MESON_VID_PLL_DIV
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] [v2] clk: meson: S4: select CONFIG_COMMON_CLK_MESON_CLKC_UTILS
2023-10-23 14:20 ` Jerome Brunet
@ 2023-10-23 14:43 ` Arnd Bergmann
0 siblings, 0 replies; 3+ messages in thread
From: Arnd Bergmann @ 2023-10-23 14:43 UTC (permalink / raw)
To: Jerome Brunet, Arnd Bergmann, Neil Armstrong, Michael Turquette,
Stephen Boyd, Kevin Hilman, Yu Tu
Cc: Martin Blumenstingl, Dmitry Rokosov, Jian Hu, linux-amlogic,
linux-clk, linux-arm-kernel, linux-kernel
On Mon, Oct 23, 2023, at 16:20, Jerome Brunet wrote:
> On Mon 23 Oct 2023 at 12:28, Arnd Bergmann <arnd@kernel.org> wrote:
> Applied fixing this minor checkpatch warning (1 extra char)
>
> WARNING: Please use correct Fixes: style 'Fixes: <12 chars of sha1>
> ("<title line>")' - ie: 'Fixes: e787c9c55eda ("clk: meson: S4: add
> support for Amlogic S4 SoC PLL clock driver")'
>
Thanks for pointing this out, I have no idea where this was set to 13,
but I've changed it to 12 in my ~/.gitconfig now.
Arnd
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-10-23 14:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-23 10:28 [PATCH] [v2] clk: meson: S4: select CONFIG_COMMON_CLK_MESON_CLKC_UTILS Arnd Bergmann
2023-10-23 14:20 ` Jerome Brunet
2023-10-23 14:43 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox