summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-10-11 02:16:46 +0200
committerTom Rini <trini@konsulko.com>2018-10-22 09:18:49 -0400
commitd796735c334b4aec58e17bc0db700d418db4dae9 (patch)
tree7522079974d7b69459bb42d6cae07fae8d9f4b6a
parented5df0852f56a3512db283010ad7b6e93cba0612 (diff)
test: overlay: add missing include
Compiling the overlay unit test fails with odroid-c2_defconfig showing errors like: test/overlay/cmd_ut_overlay.c:29:8: error: unknown type name ‘fdt32_t’ Add the missing include. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--test/overlay/cmd_ut_overlay.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/overlay/cmd_ut_overlay.c b/test/overlay/cmd_ut_overlay.c
index f7ff93799f..3d34c8ab53 100644
--- a/test/overlay/cmd_ut_overlay.c
+++ b/test/overlay/cmd_ut_overlay.c
@@ -7,6 +7,7 @@
#include <common.h>
#include <command.h>
#include <errno.h>
+#include <fdt_support.h>
#include <malloc.h>
#include <linux/sizes.h>