1 /* 2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef BL2_H__ 8 #define BL2_H__ 9 10 struct entry_point_info; 11 12 void bl2_main(void); 13 struct entry_point_info *bl2_load_images(void); 14 15 #endif /* BL2_H__ */ 16