diff options
Diffstat (limited to 'drivers/virtio')
-rw-r--r-- | drivers/virtio/virtio_pci.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index 764ec05ea3e..91683e6e7af 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c | |||
@@ -602,11 +602,11 @@ static struct virtio_config_ops virtio_pci_config_ops = { | |||
602 | 602 | ||
603 | static void virtio_pci_release_dev(struct device *_d) | 603 | static void virtio_pci_release_dev(struct device *_d) |
604 | { | 604 | { |
605 | struct virtio_device *dev = container_of(_d, struct virtio_device, | 605 | /* |
606 | dev); | 606 | * No need for a release method as we allocate/free |
607 | struct virtio_pci_device *vp_dev = to_vp_device(dev); | 607 | * all devices together with the pci devices. |
608 | 608 | * Provide an empty one to avoid getting a warning from core. | |
609 | kfree(vp_dev); | 609 | */ |
610 | } | 610 | } |
611 | 611 | ||
612 | /* the PCI probing function */ | 612 | /* the PCI probing function */ |
@@ -694,6 +694,7 @@ static void __devexit virtio_pci_remove(struct pci_dev *pci_dev) | |||
694 | pci_iounmap(pci_dev, vp_dev->ioaddr); | 694 | pci_iounmap(pci_dev, vp_dev->ioaddr); |
695 | pci_release_regions(pci_dev); | 695 | pci_release_regions(pci_dev); |
696 | pci_disable_device(pci_dev); | 696 | pci_disable_device(pci_dev); |
697 | kfree(vp_dev); | ||
697 | } | 698 | } |
698 | 699 | ||
699 | #ifdef CONFIG_PM | 700 | #ifdef CONFIG_PM |