aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-03-12 19:52:25 +0100
committerAlexander Graf <agraf@suse.de>2018-04-04 11:00:07 +0200
commit9967adb71db685c0b45312f966e954d9fe5293c7 (patch)
treeedc1a3fa4a4d2bd64c9a74bcc7623515bb647fb4
parentbdecaebd5d5e266301b4bc4064b5fbc0922874d2 (diff)
downloadu-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>
-rw-r--r--lib/efi_selftest/efi_selftest_fdt.c2
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;