xref: /rk3399_ARM-atf/include/lib/extensions/trbe.h (revision 1cf3e2f0a8eb0d6324ce3db68dd5c78bdb690a8a)
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_enable(void);
12 #else
13 static inline void trbe_enable(void)
14 {
15 }
16 #endif /* ENABLE_TRBE_FOR_NS */
17 
18 #endif /* TRBE_H */
19