From patchwork Tue Aug 30 06:56:28 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 664021 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3sNfQz2d4Sz9sBf for ; Tue, 30 Aug 2016 16:55:07 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b=oRojpwFj; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A6BD4A7535; Tue, 30 Aug 2016 08:55:02 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h33BruOkyB_u; Tue, 30 Aug 2016 08:55:02 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 54BFFA7574; Tue, 30 Aug 2016 08:54:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D0E67A7528 for ; Tue, 30 Aug 2016 08:54:51 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K1D4YQRVtrD8 for ; Tue, 30 Aug 2016 08:54:51 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-11.nifty.com (conuserg-11.nifty.com [210.131.2.78]) by theia.denx.de (Postfix) with ESMTPS id 139AEA7527 for ; Tue, 30 Aug 2016 08:54:47 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id u7U6sOdM027520; Tue, 30 Aug 2016 15:54:26 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com u7U6sOdM027520 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1472540066; bh=jliTvpkq1Hx3OeT++8SuPaL+N/vRk/PnqXat8Hx2SfI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oRojpwFjt46cQatvZgRmMpqMZModjyo0n35QaaD8JdfRv/i2KnMp2johKdh5l+XmG 6n5u4zDuhZp8BiFooDEwiV+AFECqCMf3SGA29gSg1MqhHx7aMYGo2RkN82PzJAyOg7 KfVZTXpPCgcMYCPA1xDfKbsXvFfBeDw0L30tXbf0htzWK9rYRRo9fpG8DNyCNAICsR 1PEMTLEvH6X9qllvsQoLYnSmKuVrra4y17ynLhizUl0PU1mU12eqSzOoEo/XlY+b50 KLRjZM14I/aYvs2W5xya9BiMdpWnqQSHadhN+L49ea84V1DKxBRGRxhWUViOdnV0hJ AXjl5Ax07o12Q== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 30 Aug 2016 15:56:28 +0900 Message-Id: <1472540191-18245-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1472540191-18245-1-git-send-email-yamada.masahiro@socionext.com> References: <1472540191-18245-1-git-send-email-yamada.masahiro@socionext.com> Cc: Stephen Warren , Tom Warren Subject: [U-Boot] [PATCH 1/4] ARM: tegra: remove wrong dependency on SPL_BUILD X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" SPL_BUILD is not a CONFIG in Kconfig, so !SPL_BUILD is always true. Signed-off-by: Masahiro Yamada --- 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"