mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
Since compat is gone there is only a 64 bit vdso left. Remove the superfluous "64" suffix everywhere. Reviewed-by: Jens Remus <jremus@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
20 lines
481 B
C
20 lines
481 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "../../../../lib/vdso/gettimeofday.c"
|
|
#include "vdso.h"
|
|
|
|
int __s390_vdso_gettimeofday(struct __kernel_old_timeval *tv,
|
|
struct timezone *tz)
|
|
{
|
|
return __cvdso_gettimeofday(tv, tz);
|
|
}
|
|
|
|
int __s390_vdso_clock_gettime(clockid_t clock, struct __kernel_timespec *ts)
|
|
{
|
|
return __cvdso_clock_gettime(clock, ts);
|
|
}
|
|
|
|
int __s390_vdso_clock_getres(clockid_t clock, struct __kernel_timespec *ts)
|
|
{
|
|
return __cvdso_clock_getres(clock, ts);
|
|
}
|