Skip to content

Commit

Permalink
usb-ehci: add ehci-pci device exit function
Browse files Browse the repository at this point in the history
clean up ehci resource when ehci pci device exit.

Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
  • Loading branch information
gongleiarei authored and kraxel committed Aug 29, 2014
1 parent 4e130cf commit 96e1492
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions hw/usb/hcd-ehci-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,19 @@ static void usb_ehci_pci_init(Object *obj)
usb_ehci_init(s, DEVICE(obj));
}

static void usb_ehci_pci_exit(PCIDevice *dev)
{
EHCIPCIState *i = PCI_EHCI(dev);
EHCIState *s = &i->ehci;

usb_ehci_unrealize(s, DEVICE(dev), NULL);

if (s->irq) {
g_free(s->irq);
s->irq = NULL;
}
}

static void usb_ehci_pci_write_config(PCIDevice *dev, uint32_t addr,
uint32_t val, int l)
{
Expand Down Expand Up @@ -121,6 +134,7 @@ static void ehci_class_init(ObjectClass *klass, void *data)
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

k->init = usb_ehci_pci_initfn;
k->exit = usb_ehci_pci_exit;
k->class_id = PCI_CLASS_SERIAL_USB;
k->config_write = usb_ehci_pci_write_config;
dc->hotpluggable = false;
Expand Down

0 comments on commit 96e1492

Please sign in to comment.