Signed-off-by: Juan Quintela <quintela@xxxxxxxxxx> --- hw/i8259.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/i8259.c b/hw/i8259.c index aaec6d8..3b98bab 100644 --- a/hw/i8259.c +++ b/hw/i8259.c @@ -464,18 +464,18 @@ static uint32_t elcr_ioport_read(void *opaque, uint32_t addr1) return s->elcr; } +#ifdef KVM_CAP_IRQCHIP static void kvm_kernel_pic_save_to_user(const void *opaque); static int kvm_kernel_pic_load_from_user(void *opaque); +#endif static const VMStateDescription vmstate_pic = { .name = "i8259", .version_id = 1, #ifdef KVM_CAP_IRQCHIP -#ifdef TARGET_I386 .pre_save = kvm_kernel_pic_save_to_user, .post_load = kvm_kernel_pic_load_from_user, #endif -#endif .minimum_version_id = 1, .minimum_version_id_old = 1, .fields = (VMStateField []) { -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html