From 0c0cdeed7f7c3ef177379fb9058b91b65f664b8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= Date: Thu, 5 Jul 2018 15:43:54 +0200 Subject: [PATCH] x86/vpt: convert periodic_time fields to bool MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit No functional change. Signed-off-by: Roger Pau Monné Acked-by: Jan Beulich --- xen/include/asm-x86/hvm/vpt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 */ -- 2.30.2