xref: /linux/include/vdso/auxclock.h (revision 02dc9d15d7784afb42ffde0ae3d8156dd09c2ff7)
1*9b7fc3f1SThomas Weißschuh /* SPDX-License-Identifier: GPL-2.0 */
2*9b7fc3f1SThomas Weißschuh #ifndef _VDSO_AUXCLOCK_H
3*9b7fc3f1SThomas Weißschuh #define _VDSO_AUXCLOCK_H
4*9b7fc3f1SThomas Weißschuh 
5*9b7fc3f1SThomas Weißschuh #include <uapi/linux/time.h>
6*9b7fc3f1SThomas Weißschuh #include <uapi/linux/types.h>
7*9b7fc3f1SThomas Weißschuh 
aux_clock_resolution_ns(void)8*9b7fc3f1SThomas Weißschuh static __always_inline u64 aux_clock_resolution_ns(void)
9*9b7fc3f1SThomas Weißschuh {
10*9b7fc3f1SThomas Weißschuh 	return 1;
11*9b7fc3f1SThomas Weißschuh }
12*9b7fc3f1SThomas Weißschuh 
13*9b7fc3f1SThomas Weißschuh #endif /* _VDSO_AUXCLOCK_H */
14