1 // © 2021 Qualcomm Innovation Center, Inc. All rights reserved.
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #include <hyptypes.h>
6 
7 #include <trace.h>
8 
9 trace_control_t trace_control;
10 
11 void
trace_set_class_flags(register_t flags)12 trace_set_class_flags(register_t flags)
13 {
14 	(void)flags;
15 }
16 
17 void
trace_clear_class_flags(register_t flags)18 trace_clear_class_flags(register_t flags)
19 {
20 	(void)flags;
21 }
22 
23 register_t
trace_get_class_flags()24 trace_get_class_flags()
25 {
26 	return (register_t)0;
27 }
28