diff options
author | Juan Quintela <quintela@redhat.com> | 2011-02-24 15:17:15 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-03-06 20:10:58 +0100 |
commit | 9023f7b2c8af154744fe3ed3412be00d0424e874 (patch) | |
tree | cdc42d8acb6ef0a4b20ad7ca275375329e542386 /hw | |
parent | 532847e427e0c784216c8be943f7cdeec6c307d0 (diff) | |
download | qemu-9023f7b2c8af154744fe3ed3412be00d0424e874.zip qemu-9023f7b2c8af154744fe3ed3412be00d0424e874.tar.gz qemu-9023f7b2c8af154744fe3ed3412be00d0424e874.tar.bz2 |
vmstate: remove uninorth savevm code
It was migrating the wrong structures, no way it would work
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/unin_pci.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/hw/unin_pci.c b/hw/unin_pci.c index 5f15058..c57c0a1 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; |