diff options
author | Heinrich Schuchardt | 2018-10-11 02:16:46 +0200 |
---|---|---|
committer | Tom Rini | 2018-10-22 09:18:49 -0400 |
commit | d796735c334b4aec58e17bc0db700d418db4dae9 (patch) | |
tree | 7522079974d7b69459bb42d6cae07fae8d9f4b6a /test/overlay | |
parent | ed5df0852f56a3512db283010ad7b6e93cba0612 (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>
Diffstat (limited to 'test/overlay')
-rw-r--r-- | test/overlay/cmd_ut_overlay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/overlay/cmd_ut_overlay.c b/test/overlay/cmd_ut_overlay.c index f7ff93799f5..3d34c8ab53a 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> |