Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame^] | 1 | /* |
2 | * SPDX-License-Identifier: BSD-3-Clause | ||||
3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. | ||||
4 | */ | ||||
5 | #include <assert.h> | ||||
6 | #include <smc-rsi.h> | ||||
7 | |||||
8 | COMPILER_ASSERT(RSI_ABI_VERSION_MAJOR <= 0x7FFF); | ||||
9 | COMPILER_ASSERT(RSI_ABI_VERSION_MINOR <= 0xFFFF); | ||||
10 | |||||
11 | unsigned long system_rsi_abi_version(void) | ||||
12 | { | ||||
13 | return RSI_ABI_VERSION; | ||||
14 | } |