Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> --- hw/ide/via.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/hw/ide/via.c b/hw/ide/via.c index 5fe053c..58070df 100644 --- a/hw/ide/via.c +++ b/hw/ide/via.c @@ -190,8 +190,9 @@ static int vt82c686b_ide_initfn(PCIDevice *dev) return 0; } -static void vt82c686b_ide_exitfn(PCIDevice *dev) +static void vt82c686b_ide_instance_finalize(Object *obj) { + PCIDevice *dev = PCI_DEVICE(obj); PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev); unsigned i; @@ -218,7 +219,6 @@ static void via_ide_class_init(ObjectClass *klass, void *data) PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); k->init = vt82c686b_ide_initfn; - k->exit = vt82c686b_ide_exitfn; k->vendor_id = PCI_VENDOR_ID_VIA; k->device_id = PCI_DEVICE_ID_VIA_IDE; k->revision = 0x06; @@ -231,6 +231,7 @@ static const TypeInfo via_ide_info = { .parent = TYPE_PCI_DEVICE, .instance_size = sizeof(PCIIDEState), .class_init = via_ide_class_init, + .instance_finalize = vt82c686b_ide_instance_finalize, }; static void via_ide_register_types(void) -- 1.8.1.4