1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_X86_TRACE_CLOCK_H 3 #define _ASM_X86_TRACE_CLOCK_H 4 5 #include <linux/compiler.h> 6 #include <linux/types.h> 7 8 extern u64 notrace trace_clock_x86_tsc(void); 9 10 # define ARCH_TRACE_CLOCKS \ 11 { trace_clock_x86_tsc, "x86-tsc", .in_ns = 0 }, 12 13 #endif /* _ASM_X86_TRACE_CLOCK_H */ 14