From: Roger Pau Monné Date: Thu, 5 Jul 2018 13:43:54 +0000 (+0200) Subject: x86/vpt: convert periodic_time fields to bool X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3676 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0c0cdeed7f7c3ef177379fb9058b91b65f664b8d;p=xen.git x86/vpt: convert periodic_time fields to bool No functional change. Signed-off-by: Roger Pau Monné Acked-by: Jan Beulich --- diff --git a/xen/include/asm-x86/hvm/vpt.h b/xen/include/asm-x86/hvm/vpt.h index 0eb5ff632e..f693c0bcf1 100644 --- a/xen/include/asm-x86/hvm/vpt.h +++ b/xen/include/asm-x86/hvm/vpt.h @@ -37,11 +37,11 @@ typedef void time_cb(struct vcpu *v, void *opaque); struct periodic_time { struct list_head list; - bool_t on_list; - bool_t one_shot; - bool_t do_not_freeze; - bool_t irq_issued; - bool_t warned_timeout_too_short; + bool on_list; + bool one_shot; + bool do_not_freeze; + bool irq_issued; + bool warned_timeout_too_short; #define PTSRC_isa 1 /* ISA time source */ #define PTSRC_lapic 2 /* LAPIC time source */ #define PTSRC_ioapic 3 /* IOAPIC time source */