Commit d796735c334b4aec58e17bc0db700d418db4dae9

Authored by Heinrich Schuchardt
Committed by Tom Rini
1 parent ed5df0852f

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

test/overlay/cmd_ut_overlay.c
... ... @@ -7,6 +7,7 @@
7 7 #include <common.h>
8 8 #include <command.h>
9 9 #include <errno.h>
  10 +#include <fdt_support.h>
10 11 #include <malloc.h>
11 12  
12 13 #include <linux/sizes.h>