From patchwork Fri May 20 03:13:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 68220 Delivered-To: patch@linaro.org Received: by 10.140.92.199 with SMTP id b65csp3539686qge; Thu, 19 May 2016 20:12:43 -0700 (PDT) X-Received: by 10.194.69.106 with SMTP id d10mr646680wju.165.1463713963560; Thu, 19 May 2016 20:12:43 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id so17si22652615wjb.226.2016.05.19.20.12.43; Thu, 19 May 2016 20:12:43 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3884BA7514; Fri, 20 May 2016 05:12:42 +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 v9f8tY329Q1B; Fri, 20 May 2016 05:12:41 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8671AA74E9; Fri, 20 May 2016 05:12:41 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D9D2CA74E9 for ; Fri, 20 May 2016 05:12:37 +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 bbqFTir-3fPc for ; Fri, 20 May 2016 05:12:37 +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-08.nifty.com (conuserg-08.nifty.com [210.131.2.75]) by theia.denx.de (Postfix) with ESMTPS id 2C404A7498 for ; Fri, 20 May 2016 05:12:32 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-08.nifty.com with ESMTP id u4K3C217020106; Fri, 20 May 2016 12:12:03 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com u4K3C217020106 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1463713924; bh=64U/cwybU/NxCBpzNwcV3wpZhNOM4LuJ6rFTIJ+Py8I=; h=From:To:Cc:Subject:Date:From; b=Tx9FKO/lpB/TZsxcmjqnUNaqNCq/w4qAIPOrc0k7hQNsx/w+mihRHTDbuEiHi25kY vMVVQIOu8nJga6BWkucdmll4yejCIlGtJW56fZBEfVUXstgEbOcI680AkuKbZAsyI9 oa4K87/Zcf9lZ9vPXi4n3pgKpHddfm1/y9ORdqcVdZ0wDD+SXewqDSLqd2RDMoZdeO +pc3ParK/nxeQQXVRlUdfzuf1Y4lOnMt8mCAKO8jChayDHTN4/4oNMoeK06s+cPq+P P7Wtv730P+srcClf02juWfIBsNeNudL1FGBMLVXXDmWZKh9yTg4eORRBS/We4Q/LLs cIA5+6XaQIevw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Fri, 20 May 2016 12:13:10 +0900 Message-Id: <1463713990-9963-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Cc: Stephen Warren , Thierry Reding , Radha Mohan Chintakuntla Subject: [U-Boot] [PATCH v2] ARM: fix ifdef in ARMv8 lowlevel_init() again 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" Commit 116611937faa ("ARM: fix ifdefs in ARMv8 lowlevel_init()") accidentally inverted the logic of CONFIG_ARMV8_MULTIENTRY. Fixes: 116611937faa ("ARM: fix ifdefs in ARMv8 lowlevel_init()") Signed-off-by: Masahiro Yamada --- Changes in v2: - Rephrase subject arch/arm/cpu/armv8/start.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/arch/arm/cpu/armv8/start.S b/arch/arm/cpu/armv8/start.S index c3cc819..e933021 100644 --- a/arch/arm/cpu/armv8/start.S +++ b/arch/arm/cpu/armv8/start.S @@ -216,7 +216,7 @@ WEAK(lowlevel_init) #endif #endif -#ifndef CONFIG_ARMV8_MULTIENTRY +#ifdef CONFIG_ARMV8_MULTIENTRY branch_if_master x0, x1, 2f /*