1 /* 2 * Copyright (c) 2021-2023, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef TRBE_H 8 #define TRBE_H 9 10 #if ENABLE_TRBE_FOR_NS 11 void trbe_init_el3(void); 12 void trbe_init_el2_unused(void); 13 #else trbe_init_el3(void)14static inline void trbe_init_el3(void) 15 { 16 } trbe_init_el2_unused(void)17static inline void trbe_init_el2_unused(void) 18 { 19 } 20 #endif /* ENABLE_TRBE_FOR_NS */ 21 22 #endif /* TRBE_H */ 23