diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-25 20:40:44 +0900 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-02-01 12:18:49 -0800 |
commit | 990591ee39b6e2d0ad1f281a476c62cebbc7ee7c (patch) | |
tree | ccb21a47c19de795e84f40aec53d9141976df5f9 /arch | |
parent | c38ac80eb4b0d0c78aad9b8978a3c0da3da01ead (diff) | |
download | linux-990591ee39b6e2d0ad1f281a476c62cebbc7ee7c.tar.bz2 |
ARM: tango: use "depends on" instead of "if" after prompt
This platform was recently added, 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>
Acked-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-tango/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-tango/Kconfig b/arch/arm/mach-tango/Kconfig index d6a3714b096e..ebe15b93bbe8 100644 --- a/arch/arm/mach-tango/Kconfig +++ b/arch/arm/mach-tango/Kconfig @@ -1,5 +1,6 @@ config ARCH_TANGO - bool "Sigma Designs Tango4 (SMP87xx)" if ARCH_MULTI_V7 + bool "Sigma Designs Tango4 (SMP87xx)" + depends on ARCH_MULTI_V7 # Cortex-A9 MPCore r3p0, PL310 r3p2 select ARCH_HAS_HOLES_MEMORYMODEL select ARM_ERRATA_754322 |