diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-25 14:42:44 +0300 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-02-01 23:19:10 +0300 |
commit | c65cd255e4b7dd529b9f35f7e4b05fe154adbb5f (patch) | |
tree | 7e12c8676f613914b174f3614481efb0edd2376a /arch/arm | |
parent | 990591ee39b6e2d0ad1f281a476c62cebbc7ee7c (diff) | |
download | linux-c65cd255e4b7dd529b9f35f7e4b05fe154adbb5f.tar.xz |
ARM: realview: use "depends on" instead of "if" after prompt
This platform recently moved to multi-platform, so missed the global
fixup by commit e32465429490 ("ARM: use "depends on" for SoC configs
instead of "if" after prompt"). Fix it now.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-realview/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-realview/Kconfig b/arch/arm/mach-realview/Kconfig index def40a0dd60c..70ab4a25a5f8 100644 --- a/arch/arm/mach-realview/Kconfig +++ b/arch/arm/mach-realview/Kconfig @@ -1,5 +1,6 @@ menuconfig ARCH_REALVIEW - bool "ARM Ltd. RealView family" if ARCH_MULTI_V5 || ARCH_MULTI_V6 || ARCH_MULTI_V7 + bool "ARM Ltd. RealView family" + depends on ARCH_MULTI_V5 || ARCH_MULTI_V6 || ARCH_MULTI_V7 select ARM_AMBA select ARM_TIMER_SP804 select COMMON_CLK_VERSATILE |