xref: /rk3399_ARM-atf/include/plat/marvell/odyssey/csr/ody-version.h (revision e8cc9706e2ec5baf718d502ff5b24673c1ac1e07)
1 /***********************license start***********************************
2 * Copyright (C) 2021-2026 Marvell.
3 * SPDX-License-Identifier: BSD-3-Clause
4 * https://spdx.org/licenses
5 ***********************license end**************************************/
6 
7 /**
8  * @file
9  *
10  * Functions for identifying ODY build version.
11  *
12  * <hr>$Revision$<hr>
13  */
14 
15 
16 extern const char ody_version_str[];
17 
18 /**
19  * Return ODY version string
20  *
21  * @return ODY version string
22  */
23 static inline const char *ody_version_string(void)
24 {
25 	return ody_version_str;
26 }
27