]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
efi_loader: fix depends on line of EFI_LOADER
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 19 Oct 2016 15:23:43 +0000 (00:23 +0900)
committerAlexander Graf <agraf@suse.de>
Mon, 14 Nov 2016 22:24:02 +0000 (23:24 +0100)
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>
Signed-off-by: Alexander Graf <agraf@suse.de>
lib/efi_loader/Kconfig

index 37a0dd60a5e08747d16316deac34cbc6bca7b033..7d4106e4c92dc97369182a9ce9e1dc641dafe714 100644 (file)
@@ -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)