1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2017 SiFive
6 #include <linux/linkage.h>
7 #include <asm/unistd.h>
10 /* int __vdso_clock_gettime(clockid_t clock_id, struct timespec *tp); */
11 ENTRY(__vdso_clock_gettime)
13 /* For now, just do the syscall. */
14 li a7, __NR_clock_gettime
18 ENDPROC(__vdso_clock_gettime)