From patchwork Wed Oct 19 15:23:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 78397 Delivered-To: patch@linaro.org Received: by 10.140.97.247 with SMTP id m110csp586919qge; Wed, 19 Oct 2016 21:18:55 -0700 (PDT) X-Received: by 10.194.20.3 with SMTP id j3mr6864670wje.30.1476937135123; Wed, 19 Oct 2016 21:18:55 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id x9si58727622wjs.101.2016.10.19.21.18.54; Wed, 19 Oct 2016 21:18:55 -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 94BE0B3817; Thu, 20 Oct 2016 06:18: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 uqs8RzEBT7k7; Thu, 20 Oct 2016 06:18:51 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 10199B3830; Thu, 20 Oct 2016 06:18:45 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 43E22A755F for ; Wed, 19 Oct 2016 17:24:22 +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 oJ5BMBdcvnFR for ; Wed, 19 Oct 2016 17:24:20 +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-09.nifty.com (conuserg-09.nifty.com [210.131.2.76]) by theia.denx.de (Postfix) with ESMTPS id 8B600A7548 for ; Wed, 19 Oct 2016 17:24:07 +0200 (CEST) Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-09.nifty.com with ESMTP id u9JFNkcC023589; Thu, 20 Oct 2016 00:23:50 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com u9JFNkcC023589 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1476890631; bh=MvFDrHXa0gjhMQIL/MRQctdpuexZCdp5mpO46NMFjDY=; h=From:To:Cc:Subject:Date:From; b=g4PVAxruLnXmuexkfEfq8x/qNdaiEq3mVs0BM8tkaTvgoha4Idjo/5GUNKIqha75e tsPH84KwQKeGt42VhBbBlRQmw0IWbSA4CEq6UYpCl/EP+t+2YXvTcBaE7WJiZZ9zM3 xkAQRWLcaGLdRc+7TMuqYMLDmUBLIHN98CoQ6Tz1aoSq7ZtY8+B5HID3pBh8mZ2Y+d mh1oytxnblgW6/+/ctx89NVrMo/7/IKC+TvRLE3QYHTNmlnAw8XjNHb7IxXrKElPK3 W4jlj7zJ1OTx4O47ksx0kYWFh7sZvm03xwJeOCvgFXuG8iSBW6PpsSvpnsIIFg+hLu xrad4uK5y00SQ== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Thu, 20 Oct 2016 00:23:43 +0900 Message-Id: <1476890623-6055-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Subject: [U-Boot] [PATCH] efi_loader: fix depends on line of EFI_LOADER 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: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This line is shown as depends on (ARM64 ||\302\240ARM) && OF_LIBFDT on my Emacs. Use ASCII characters only. Assuming it is (ARM64 || ARM), remove the redundancy. Unlike Linux, CONFIG_ARM includes CONFIG_ARM64 in U-Boot. Signed-off-by: Masahiro Yamada --- lib/efi_loader/Kconfig | 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/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 37a0dd6..7d4106e 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -1,6 +1,6 @@ config EFI_LOADER bool "Support running EFI Applications in U-Boot" - depends on (ARM64 || ARM) && OF_LIBFDT + depends on ARM && OF_LIBFDT default y help Select this option if you want to run EFI applications (like grub2)