1 /* 2 * Copyright (c) 2022, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef BL1_1_IMAGE_H 9 #define BL1_1_IMAGE_H 10 11 #include <stdint.h> 12 #include "fih.h" 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 fih_int bl1_read_bl1_2_image(uint8_t *image); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* BL1_1_IMAGE_H */ 25