diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-04-16 18:30:18 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-26 14:24:08 -0600 |
commit | 64045a6a173e6cf74a9c30bbe21a93d105be289e (patch) | |
tree | 279284ae7f5f735a99c8273253e677a99189db84 /common/image-fit-sig.c | |
parent | 3e69db1223b9db82705fcc96b76caf0d8a468d12 (diff) |
libfdt: split fdt_region declarations out to <fdt_region.h>
fdt_region APIs are not part of libfdt. They are U-Boot extension
for the verified boot. Split the declarations related to fdt_region
out of <fdt_region.h>. This allows <linux/libfdt.h> to become a
simple wrapper file, like Linux does.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'common/image-fit-sig.c')
-rw-r--r-- | common/image-fit-sig.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image-fit-sig.c b/common/image-fit-sig.c index 490566ca90..3e73578594 100644 --- a/common/image-fit-sig.c +++ b/common/image-fit-sig.c @@ -11,6 +11,7 @@ #include <malloc.h> DECLARE_GLOBAL_DATA_PTR; #endif /* !USE_HOSTCC*/ +#include <fdt_region.h> #include <image.h> #include <u-boot/rsa.h> #include <u-boot/rsa-checksum.h> |