From: Michal Simek Date: Wed, 13 Jan 2016 13:32:43 +0000 (+0100) Subject: ARM: zynq: Do not select options if SPL is not enabled X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a715466f5a2e27f2f3852454e0d50139f3fb92dc;p=thirdparty%2Fu-boot.git ARM: zynq: Do not select options if SPL is not enabled Zynq setups some default options for SPL but not all targets are enabling SPL. Signed-off-by: Michal Simek --- diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b49dfe99767..d8606536cbf 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -551,15 +551,15 @@ config ARCH_ZYNQ select CPU_V7 select SUPPORT_SPL select OF_CONTROL - select SPL_OF_CONTROL + select SPL_OF_CONTROL if SPL select DM select DM_ETH - select SPL_DM + select SPL_DM if SPL select DM_MMC select DM_SPI select DM_SERIAL select DM_SPI_FLASH - select SPL_SEPARATE_BSS + select SPL_SEPARATE_BSS if SPL config ARCH_ZYNQMP bool "Support Xilinx ZynqMP Platform"