1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * linux/include/asm/timex.h 4 * 5 * sparc64 architecture timex specifications 6 */ 7 #ifndef _ASMsparc64_TIMEX_H 8 #define _ASMsparc64_TIMEX_H 9 10 #include <asm/timer.h> 11 12 /* Getting on the cycle counter on sparc64. */ 13 typedef unsigned long cycles_t; 14 #define get_cycles() tick_ops->get_tick() 15 16 #endif 17