diff options
Diffstat (limited to 'include/bl2/bl2.h')
-rw-r--r-- | include/bl2/bl2.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/bl2/bl2.h b/include/bl2/bl2.h index 9a5094ff..25b6f9cd 100644 --- a/include/bl2/bl2.h +++ b/include/bl2/bl2.h @@ -31,18 +31,22 @@ #ifndef __BL2_H__ #define __BL2_H__ -#include <bl_common.h> - /****************************************** * Data declarations *****************************************/ extern unsigned long long bl2_entrypoint; /****************************************** + * Forward declarations + *****************************************/ +struct meminfo; +struct bl31_args; + +/****************************************** * Function prototypes *****************************************/ extern void bl2_platform_setup(void); -extern meminfo_t *bl2_plat_sec_mem_layout(void); -extern bl31_args_t *bl2_get_bl31_args_ptr(void); +extern struct meminfo *bl2_plat_sec_mem_layout(void); +extern struct bl31_args *bl2_get_bl31_args_ptr(void); #endif /* __BL2_H__ */ |