1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * linux/include/asm-cris/timex.h 4 * 5 * CRIS architecture timex specifications 6 */ 7 8 #ifndef _ASM_CRIS_TIMEX_H 9 #define _ASM_CRIS_TIMEX_H 10 11 #include <arch/timex.h> 12 13 /* 14 * We don't have a cycle-counter.. but we do not support SMP anyway where this is 15 * used so it does not matter. 16 */ 17 18 typedef unsigned long long cycles_t; 19 get_cycles(void)20static inline cycles_t get_cycles(void) 21 { 22 return 0; 23 } 24 25 #endif 26