xref: /rk3399_ARM-atf/include/common/romlib.h (revision b35ce0c413a71689a2b46453b9c30596128f13dc)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef ROMLIB_H
8 #define ROMLIB_H
9 
10 #define ROMLIB_MAJOR   0
11 #define ROMLIB_MINOR   1
12 #define ROMLIB_VERSION ((ROMLIB_MAJOR << 8) | ROMLIB_MINOR)
13 
14 int rom_lib_init(int version);
15 
16 #endif /* ROMLIB_H */
17