aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/virtio
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-11-21 13:50:33 -0500
committerDavid S. Miller <davem@davemloft.net>2011-11-21 13:50:33 -0500
commitefd0bf97deeddd9ba53daabfc470a1399c6b0b2d (patch)
treeeec56da5fbc796bac7c67f1990a18f5e0a304059 /drivers/virtio
parentf8a15af093b19b86d56933c8757cee298d0f32a8 (diff)
parent6fe4c6d466e95d31164f14b1ac4aefb51f0f4f82 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
The forcedeth changes had a conflict with the conversion over to atomic u64 statistics in net-next. The libertas cfg.c code had a conflict with the bss reference counting fix by John Linville in net-next. Conflicts: drivers/net/ethernet/nvidia/forcedeth.c drivers/net/wireless/libertas/cfg.c
Diffstat (limited to 'drivers/virtio')
-rw-r--r--drivers/virtio/virtio_pci.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c
index 764ec05ea3e8..91683e6e7af5 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
603static void virtio_pci_release_dev(struct device *_d) 603static 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