From 271cf2f421af072932404d56e6a7c97538d65de0 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Tue, 25 Feb 2020 02:25:46 +0900 Subject: spl.h: make self-contained The static inline function spl_phase needs . Some functions take pointers to struct blk_desc or image_header. Add forward declarations. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- include/spl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/spl.h b/include/spl.h index 6087cd7..5d8d14d 100644 --- a/include/spl.h +++ b/include/spl.h @@ -10,9 +10,13 @@ /* Platform-specific defines */ #include +#include #include #include +struct blk_desc; +struct image_header; + /* Value in r0 indicates we booted from U-Boot */ #define UBOOT_NOT_LOADED_FROM_SPL 0x13578642 -- cgit v1.1