]> git.ipfire.org Git - thirdparty/kernel/linux.git/blob - arch/cris/include/asm/timex.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / arch / cris / include / asm / timex.h
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
20 static inline cycles_t get_cycles(void)
21 {
22 return 0;
23 }
24
25 #endif