From mboxrd@z Thu Jan 1 00:00:00 1970 From: Masahiro Yamada Date: Tue, 30 Aug 2016 16:22:20 +0900 Subject: [U-Boot] [PATCH v2 1/4] ARM: tegra: remove wrong dependency on SPL_BUILD In-Reply-To: <1472541743-18717-1-git-send-email-yamada.masahiro@socionext.com> References: <1472541743-18717-1-git-send-email-yamada.masahiro@socionext.com> Message-ID: <1472541743-18717-2-git-send-email-yamada.masahiro@socionext.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de SPL_BUILD is not a CONFIG in Kconfig, so !SPL_BUILD is always true. Signed-off-by: Masahiro Yamada --- Changes in v2: None arch/arm/mach-tegra/tegra124/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-tegra/tegra124/Kconfig b/arch/arm/mach-tegra/tegra124/Kconfig index f3324ff..44f63f7 100644 --- a/arch/arm/mach-tegra/tegra124/Kconfig +++ b/arch/arm/mach-tegra/tegra124/Kconfig @@ -6,8 +6,8 @@ choice config TARGET_JETSON_TK1 bool "NVIDIA Tegra124 Jetson TK1 board" - select CPU_V7_HAS_NONSEC if !SPL_BUILD - select CPU_V7_HAS_VIRT if !SPL_BUILD + select CPU_V7_HAS_NONSEC + select CPU_V7_HAS_VIRT config TARGET_NYAN_BIG bool "Google/NVIDIA Nyan-big Chromebook" -- 1.9.1