diff options
author | Jean Delvare <[email protected]> | 2021-09-01 18:09:53 +0200 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2021-10-14 18:00:35 -0700 |
commit | d4e15d4821e723a45ea9f0ddd56f7ac36b1c3cca (patch) | |
tree | 044236d3602c7ac009c06dc500f417b5745d276b | |
parent | 323fd5955f844d1b6acf1a1af488da460f657ff2 (diff) |
clk: versatile: hide clock drivers from non-ARM users
Commit 419b3ab6987f ("clk: versatile: remove dependency on ARCH_*")
made the whole menu of ARM reference clock drivers visible on all
architectures. I can't see how this is an improvement for non-ARM
users. Unless build-testing, there is no point on presenting
ARM-only clock drivers on other architectures.
Signed-off-by: Jean Delvare <[email protected]>
Cc: Peter Collingbourne <[email protected]>
Cc: Lee Jones <[email protected]>
Cc: Linus Walleij <[email protected]>
Cc: Stephen Boyd <[email protected]>
Link: https://lore.kernel.org/r/20210901180953.5bd2a994@endymion
Reviewed-by: Linus Walleij <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/versatile/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/versatile/Kconfig b/drivers/clk/versatile/Kconfig index 29b82037e167..403f164954c2 100644 --- a/drivers/clk/versatile/Kconfig +++ b/drivers/clk/versatile/Kconfig @@ -2,6 +2,7 @@ menu "Clock driver for ARM Reference designs" depends on HAS_IOMEM + depends on ARM || ARM64 || COMPILE_TEST config CLK_ICST bool "Clock driver for ARM Reference designs ICST" |