xref: /rk3399_ARM-atf/include/lib/extensions/trf.h (revision 6bb49c876c7593ed5f61c20ef3d989dcff8e8d8c)
1 /*
2  * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef TRF_H
8 #define TRF_H
9 
10 #if ENABLE_TRF_FOR_NS
11 void trf_enable(void);
12 #else
13 void trf_enable(void)
14 {
15 }
16 #endif /* ENABLE_TRF_FOR_NS */
17 
18 #endif /* TRF_H */
19