diff options
Diffstat (limited to 'arch/x86/lguest')
| -rw-r--r-- | arch/x86/lguest/boot.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 7114c63f047d..8424d5adcfa2 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -882,9 +882,9 @@ int lguest_setup_irq(unsigned int irq)   * It would be far better for everyone if the Guest had its own clock, but   * until then the Host gives us the time on every interrupt.   */ -static unsigned long lguest_get_wallclock(void) +static void lguest_get_wallclock(struct timespec *now)  { -	return lguest_data.time.tv_sec; +	*now = lguest_data.time;  }  /* |