xref: /rk3399_ARM-atf/include/common/romlib.h (revision 091f39675a98ee9e22ed78f52e239880bedf8911)
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 
9 #define ROMLIB_MAJOR   0
10 #define ROMLIB_MINOR   1
11 #define ROMLIB_VERSION ((ROMLIB_MAJOR << 8) | ROMLIB_MINOR)
12 
13 int rom_lib_init(int version);
14 
15 #endif
16