• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __BL2_PRIVATE_H__
8 #define __BL2_PRIVATE_H__
9 
10 /******************************************
11  * Forward declarations
12  *****************************************/
13 struct entry_point_info;
14 
15 /******************************************
16  * Function prototypes
17  *****************************************/
18 void bl2_arch_setup(void);
19 struct entry_point_info *bl2_load_images(void);
20 
21 #endif /* __BL2_PRIVATE_H__ */
22