diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-12 19:52:25 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:00:07 +0200 |
commit | 9967adb71db685c0b45312f966e954d9fe5293c7 (patch) | |
tree | edc1a3fa4a4d2bd64c9a74bcc7623515bb647fb4 /lib | |
parent | bdecaebd5d5e266301b4bc4064b5fbc0922874d2 (diff) | |
download | u-boot-9967adb71db685c0b45312f966e954d9fe5293c7.zip u-boot-9967adb71db685c0b45312f966e954d9fe5293c7.tar.gz u-boot-9967adb71db685c0b45312f966e954d9fe5293c7.tar.bz2 |
efi_selftest: fix device tree unit test
Include libfdt.h was moved by commit b08c8c487083 ("libfdt: move headers to
<linux/libfdt.h> and <linux/libfdt_env.h>")
Fixes: e236200c7fa6 ("efi_selftest: check installation of the
device tree")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_selftest/efi_selftest_fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/efi_selftest_fdt.c b/lib/efi_selftest/efi_selftest_fdt.c index 24db0dc..e5a8d6a 100644 --- a/lib/efi_selftest/efi_selftest_fdt.c +++ b/lib/efi_selftest/efi_selftest_fdt.c @@ -12,7 +12,7 @@ */ #include <efi_selftest.h> -#include <libfdt.h> +#include <linux/libfdt.h> static struct efi_boot_services *boottime; static const char *fdt; |