Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
|---|---|
| 2 | /* |
| 3 | * |
| 4 | * Copyright (C) 2015 Naveen N. Rao, IBM Corporation |
| 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_PPC_TRACE_CLOCK_H |
| 8 | #define _ASM_PPC_TRACE_CLOCK_H |
| 9 | |
| 10 | #include <linux/compiler.h> |
| 11 | #include <linux/types.h> |
| 12 | |
| 13 | extern u64 notrace trace_clock_ppc_tb(void); |
| 14 | |
| 15 | #define ARCH_TRACE_CLOCKS { trace_clock_ppc_tb, "ppc-tb", 0 }, |
| 16 | |
| 17 | #endif /* _ASM_PPC_TRACE_CLOCK_H */ |
| 18 |
Warning: This file is not a C or C++ file. It does not have highlighting.
