Message ID | 20241007163414.32458-4-exxxxkc@getgoogleoff.me (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Initial Support for Linksys EA9350 V3 (linksys-jamaica) | expand |
On Tue, Oct 08, 2024 at 12:34:12AM GMT, Karl Chan wrote: > There are some ipq5018 based device's firmware only can able to boot > arm32 but the clock driver dont allow it to be compiled on > arm32.Therefore this patch needed for those devices. if there is another revision of the series for whatever reason, s/this patch needed for those devices/allow GCC for IPQ5018 to be selected when building ARM32 kernel/ > > Signed-off-by: Karl Chan <exxxxkc@getgoogleoff.me> > --- > drivers/clk/qcom/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index a3e2a09e2105..f13520095cc7 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -199,7 +199,7 @@ config IPQ_GCC_4019 config IPQ_GCC_5018 tristate "IPQ5018 Global Clock Controller" - depends on ARM64 || COMPILE_TEST + depends on ARM || ARM64 || COMPILE_TEST help Support for global clock controller on ipq5018 devices. Say Y if you want to use peripheral devices such as UART, SPI,
There are some ipq5018 based device's firmware only can able to boot arm32 but the clock driver dont allow it to be compiled on arm32.Therefore this patch needed for those devices. Signed-off-by: Karl Chan <exxxxkc@getgoogleoff.me> --- drivers/clk/qcom/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)