1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM debug
4 
5 #define TRACE_INCLUDE_PATH trace/hooks
6 
7 #if !defined(_TRACE_HOOK_DEBUG_H) || defined(TRACE_HEADER_MULTI_READ)
8 #define _TRACE_HOOK_DEBUG_H
9 
10 #include <linux/tracepoint.h>
11 #include <trace/hooks/vendor_hooks.h>
12 
13 #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_ANDROID_VENDOR_HOOKS)
14 struct pt_regs;
15 
16 DECLARE_HOOK(android_vh_ipi_stop,
17 	TP_PROTO(struct pt_regs *regs),
18 	TP_ARGS(regs))
19 #else
20 #define trace_android_vh_ipi_stop(regs)
21 #define trace_android_vh_ipi_stop_rcuidle(regs)
22 #endif
23 
24 #endif /* _TRACE_HOOK_DEBUG_H */
25 /* This part must be outside protection */
26 #include <trace/define_trace.h>
27