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