From: Christian Limpach Date: Fri, 19 Jan 2007 13:43:17 +0000 (+0000) Subject: [HVM] Whitespace cleanup. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15371^2~133^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=beb6098f214a6c227f0dce614f48cd0fc391da2d;p=xen.git [HVM] Whitespace cleanup. Signed-off-by: Christian Limpach --- diff --git a/xen/arch/x86/hvm/vpt.c b/xen/arch/x86/hvm/vpt.c index 6bd9fab154..626ad6ed44 100644 --- a/xen/arch/x86/hvm/vpt.c +++ b/xen/arch/x86/hvm/vpt.c @@ -163,7 +163,6 @@ struct periodic_time *is_pt_irq(struct vcpu *v, int vector, int type) void pt_intr_post(struct vcpu *v, int vector, int type) { struct periodic_time *pt = is_pt_irq(v, vector, type); - unsigned long long gtime; if ( pt == NULL ) return; @@ -171,8 +170,7 @@ void pt_intr_post(struct vcpu *v, int vector, int type) pt->pending_intr_nr--; pt->last_plt_gtime += pt->period_cycles; - gtime = hvm_get_guest_time(pt->vcpu); - if (gtime < pt->last_plt_gtime) + if ( hvm_get_guest_time(pt->vcpu) < pt->last_plt_gtime ) hvm_set_guest_time(pt->vcpu, pt->last_plt_gtime); if ( pt->cb != NULL )