diff options
author | 2024-11-08 12:22:34 +0100 | |
---|---|---|
committer | 2024-11-18 19:51:27 -0800 | |
commit | e7b012cb4db7253d186fd485ab07c7346c645dab (patch) | |
tree | fe5ae1a11fcdb2717a17958cbdbe8d2b7620a1fa | |
parent | clk: clk-apple-nco: Add NULL check in applnco_probe (diff) | |
download | wireguard-linux-e7b012cb4db7253d186fd485ab07c7346c645dab.tar.xz wireguard-linux-e7b012cb4db7253d186fd485ab07c7346c645dab.zip |
clk: lan966x: make it selectable for ARCH_LAN969X
LAN969x uses the same LAN966x clock driver so make it selectable for
ARCH_LAN969X.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Link: https://lore.kernel.org/r/20241108112355.20251-1-robert.marko@sartura.hr
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
-rw-r--r-- | drivers/clk/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 299bc678ed1b..d61966cdd3ea 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -259,7 +259,7 @@ config COMMON_CLK_LAN966X tristate "Generic Clock Controller driver for LAN966X SoC" depends on HAS_IOMEM depends on OF - depends on SOC_LAN966 || COMPILE_TEST + depends on SOC_LAN966 || ARCH_LAN969X || COMPILE_TEST help This driver provides support for Generic Clock Controller(GCK) on LAN966X SoC. GCK generates and supplies clock to various peripherals |