From patchwork Fri May 20 03:09: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: 68219 Delivered-To: patch@linaro.org Received: by 10.140.92.199 with SMTP id b65csp3538355qge; Thu, 19 May 2016 20:08:40 -0700 (PDT) X-Received: by 10.194.192.10 with SMTP id hc10mr638275wjc.71.1463713720012; Thu, 19 May 2016 20:08:40 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id fh8si22691413wjb.12.2016.05.19.20.08.39; Thu, 19 May 2016 20:08:40 -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 658A6A74E9; Fri, 20 May 2016 05:08:38 +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 W6EcVGWpXhEI; Fri, 20 May 2016 05:08:38 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EAB9BA74C6; Fri, 20 May 2016 05:08:37 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E8262A74C6 for ; Fri, 20 May 2016 05:08:34 +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 wMJb73549JuD for ; Fri, 20 May 2016 05:08:34 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 IN_IX_MANITU=4.35 (only DNSBL check requested) Received: from conuserg-09.nifty.com (conuserg-09.nifty.com [210.131.2.76]) by theia.denx.de (Postfix) with ESMTPS id 3202DA7498 for ; Fri, 20 May 2016 05:08:30 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-09.nifty.com with ESMTP id u4K38368017861; Fri, 20 May 2016 12:08:04 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com u4K38368017861 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1463713684; bh=ksDeOAw6qYTVCA/V0t3dHe8GaNaRAJneq75nvFgloQw=; h=From:To:Cc:Subject:Date:From; b=Kpqcs8hYITp7J4xMEeGGk5lqXCd4KbgJKTFWQlXdN58e1PF+/7hm8D6I4P1l1PDio LUiudctTEpXHg37w0CDFu5Iww/mWmW6clHorORyj8mtG2lxE8z4aFuczTeF4wy4vyk 3FdseQA8SXdliX1M8wjX2QR8cgfCsMMHRuWlkLQR1FUqpsdFperqAq+0I9cNJzo9BF W6A8QGjN0GoGDX3kJ0JZbaHJeNYBkoja9urm1BfStOSmdJIZCK3fwH4nIrA+wX/NSB yA4sLkt0br/Z2aswzpdABXQX3sSm737ikC+zhf5mfCoVahGLdQzng7uq3zvmcEwR3g XstckT7/Yr9TQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Fri, 20 May 2016 12:09:10 +0900 Message-Id: <1463713750-5842-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Cc: Stephen Warren , Thierry Reding Subject: [U-Boot] [PATCH] ARM: ARM: fix ifdefs 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 --- 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 /*