diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bl2.h | 2 | ||||
-rw-r--r-- | include/io_storage.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/bl2.h b/include/bl2.h index b9a7b0fa..2955a40d 100644 --- a/include/bl2.h +++ b/include/bl2.h @@ -43,6 +43,6 @@ extern unsigned long long bl2_entrypoint; *****************************************/ extern void bl2_platform_setup(void); extern meminfo *bl2_plat_sec_mem_layout(void); -extern meminfo bl2_get_ns_mem_layout(void); +extern meminfo *bl2_get_ns_mem_layout(void); #endif /* __BL2_H__ */ diff --git a/include/io_storage.h b/include/io_storage.h index f67e5d05..04e63c30 100644 --- a/include/io_storage.h +++ b/include/io_storage.h @@ -42,7 +42,8 @@ typedef enum { IO_TYPE_INVALID, IO_TYPE_SEMIHOSTING, - IO_TYPE_BLOCK, + IO_TYPE_MEMMAP, + IO_TYPE_FIRMWARE_IMAGE_PACKAGE, IO_TYPE_MAX } io_type; |