diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-21 18:03:35 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-04-01 22:19:10 +0800 |
commit | 641599a63df258c3e3cb259c75cdada0cc009d56 (patch) | |
tree | 0ef9af1717dde160cd5e4d63efb542359de08c45 /include/image.h | |
parent | 414e2dbbf2725f6d7e929e3b4957b38ee46535c2 (diff) | |
download | u-boot-641599a63df258c3e3cb259c75cdada0cc009d56.tar.gz |
image.h: add forward declaration of struct fdt_region
This header needs to know 'fdt_region' is a struct for the
fit_region_make_list() prototype.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index 621abf647f..a6f82aebfe 100644 --- a/include/image.h +++ b/include/image.h @@ -21,6 +21,7 @@ /* Define this to avoid #ifdefs later on */ struct lmb; +struct fdt_region; #ifdef USE_HOSTCC #include <sys/types.h> |