1 /*
2  * Copyright (c) 2021, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef SYS_REG_TRACE_H
8 #define SYS_REG_TRACE_H
9 
10 #include <context.h>
11 
12 #if __aarch64__
13 void sys_reg_trace_enable(cpu_context_t *context);
14 #else
15 void sys_reg_trace_enable(void);
16 #endif /* __aarch64__ */
17 
18 #endif /* SYS_REG_TRACE_H */
19