diff options
author | 2010-03-07 15:38:23 -0800 | |
---|---|---|
committer | 2010-03-07 15:38:23 -0800 | |
commit | 68ae6b5cc1e8b88754a64140b88e467e02abfea2 (patch) | |
tree | f47d5a571b937f2d070855a267ea3bddacf75c98 | |
parent | Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq (diff) | |
parent | virtio: set pci bus master enable bit (diff) | |
download | wireguard-linux-68ae6b5cc1e8b88754a64140b88e467e02abfea2.tar.xz wireguard-linux-68ae6b5cc1e8b88754a64140b88e467e02abfea2.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
virtio: set pci bus master enable bit
-rw-r--r-- | drivers/virtio/virtio_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index 1b6573216998..625447f645d9 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -649,6 +649,7 @@ static int __devinit virtio_pci_probe(struct pci_dev *pci_dev, goto out_req_regions; pci_set_drvdata(pci_dev, vp_dev); + pci_set_master(pci_dev); /* we use the subsystem vendor/device id as the virtio vendor/device * id. this allows us to use the same PCI vendor/device id for all |