diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-12-31 17:51:02 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2015-12-31 17:52:20 -0500 |
commit | 2cb58c016673c4c8b8ec59e71c5ec4b2c6a76afb (patch) | |
tree | f014f822373810a3e549b7daed75edc79b4ac475 | |
parent | 26922c59092c451f9888d0f1d1d72ebdafdc2628 (diff) |
ARM: realview: don't select SMP_ON_UP for UP builds
When CONFIG_SMP is disabled, we get a warning from Kconfig:
warning: (SOC_IMX31 && SOC_IMX35 && SOC_VF610 && REALVIEW_DT) selects SMP_ON_UP which has unmet direct dependencies (SMP && !XIP_KERNEL && MMU)
This changes the REALVIEW_DT Kconfig entry to not select SMP_ON_UP
unless SMP is also set.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/mach-realview/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-realview/Kconfig b/arch/arm/mach-realview/Kconfig index 9e01e42bf267..def40a0dd60c 100644 --- a/arch/arm/mach-realview/Kconfig +++ b/arch/arm/mach-realview/Kconfig | |||
@@ -23,7 +23,7 @@ config REALVIEW_DT | |||
23 | select POWER_RESET | 23 | select POWER_RESET |
24 | select POWER_RESET_VERSATILE | 24 | select POWER_RESET_VERSATILE |
25 | select POWER_SUPPLY | 25 | select POWER_SUPPLY |
26 | select SMP_ON_UP | 26 | select SMP_ON_UP if SMP |
27 | select SOC_REALVIEW | 27 | select SOC_REALVIEW |
28 | select USE_OF | 28 | select USE_OF |
29 | help | 29 | help |