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