aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/kvmclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/kvmclock.c')
-rw-r--r--arch/x86/kernel/kvmclock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c
index 8b26c9e01cc4..bf8d1eb7fca3 100644
--- a/arch/x86/kernel/kvmclock.c
+++ b/arch/x86/kernel/kvmclock.c
@@ -53,7 +53,7 @@ static struct pvclock_wall_clock *wall_clock;
53 * have elapsed since the hypervisor wrote the data. So we try to account for 53 * have elapsed since the hypervisor wrote the data. So we try to account for
54 * that with system time 54 * that with system time
55 */ 55 */
56static void kvm_get_wallclock(struct timespec *now) 56static void kvm_get_wallclock(struct timespec64 *now)
57{ 57{
58 struct pvclock_vcpu_time_info *vcpu_time; 58 struct pvclock_vcpu_time_info *vcpu_time;
59 int low, high; 59 int low, high;
@@ -72,7 +72,7 @@ static void kvm_get_wallclock(struct timespec *now)
72 put_cpu(); 72 put_cpu();
73} 73}
74 74
75static int kvm_set_wallclock(const struct timespec *now) 75static int kvm_set_wallclock(const struct timespec64 *now)
76{ 76{
77 return -ENODEV; 77 return -ENODEV;
78} 78}