소스 검색

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>
Arnd Bergmann 9 년 전
부모
커밋
2cb58c0166
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      arch/arm/mach-realview/Kconfig

+ 1 - 1
arch/arm/mach-realview/Kconfig

@@ -23,7 +23,7 @@ config REALVIEW_DT
 	select POWER_RESET
 	select POWER_RESET_VERSATILE
 	select POWER_SUPPLY
-	select SMP_ON_UP
+	select SMP_ON_UP if SMP
 	select SOC_REALVIEW
 	select USE_OF
 	help