diff mbox

[U-Boot] efi_loader: fix depends on line of EFI_LOADER

Message ID 1476890623-6055-1-git-send-email-yamada.masahiro@socionext.com
State Accepted
Commit 456ca6ba04bc4ecb5d35d01dbc62573c4391fe38
Delegated to: Alexander Graf
Headers show

Commit Message

Masahiro Yamada Oct. 19, 2016, 3:23 p.m. UTC
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 <yamada.masahiro@socionext.com>
---

 lib/efi_loader/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alexander Graf Oct. 24, 2016, 2:12 p.m. UTC | #1
> 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 <yamada.masahiro@socionext.com>

Thanks, applied to efi-next

Alex
diff mbox

Patch

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)