From 9023f7b2c8af154744fe3ed3412be00d0424e874 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 24 Feb 2011 15:17:15 +0100 Subject: [PATCH] vmstate: remove uninorth savevm code It was migrating the wrong structures, no way it would work Signed-off-by: Juan Quintela Signed-off-by: Aurelien Jarno --- hw/unin_pci.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/hw/unin_pci.c b/hw/unin_pci.c index 5f150589e1..c57c0a1ce3 100644 --- a/hw/unin_pci.c +++ b/hw/unin_pci.c @@ -63,23 +63,6 @@ static void pci_unin_set_irq(void *opaque, int irq_num, int level) qemu_set_irq(pic[unin_irq_line[irq_num]], level); } -static void pci_unin_save(QEMUFile* f, void *opaque) -{ - PCIDevice *d = opaque; - - pci_device_save(d, f); -} - -static int pci_unin_load(QEMUFile* f, void *opaque, int version_id) -{ - PCIDevice *d = opaque; - - if (version_id != 1) - return -EINVAL; - - return pci_device_load(d, f); -} - static void pci_unin_reset(void *opaque) { } @@ -158,8 +141,6 @@ static int pci_unin_main_init_device(SysBusDevice *dev) sysbus_init_mmio(dev, 0x1000, pci_mem_config); sysbus_init_mmio(dev, 0x1000, pci_mem_data); - register_savevm(&dev->qdev, "uninorth", 0, 1, - pci_unin_save, pci_unin_load, &s->host_state); qemu_register_reset(pci_unin_reset, &s->host_state); return 0; } @@ -181,8 +162,6 @@ static int pci_u3_agp_init_device(SysBusDevice *dev) sysbus_init_mmio(dev, 0x1000, pci_mem_config); sysbus_init_mmio(dev, 0x1000, pci_mem_data); - register_savevm(&dev->qdev, "uninorth", 0, 1, - pci_unin_save, pci_unin_load, &s->host_state); qemu_register_reset(pci_unin_reset, &s->host_state); return 0;