summaryrefslogtreecommitdiff
path: root/drivers/vbus
diff options
context:
space:
mode:
authorGregory Haskins <ghaskins@novell.com>2009-12-07 11:46:46 -0500
committerGregory Haskins <ghaskins@novell.com>2009-12-07 11:46:46 -0500
commit46d77295685c0dd95c550a3f43cf807f0ce29c6c (patch)
tree39b180c650dc2c6f55f45c4ad9a16d72b3090cf3 /drivers/vbus
parent9af247272ce02bc67c3848c8fde3b54b3b120b38 (diff)
vbus: fix pcibridge busmaster support
We should technically enable the busmaster bit, even though its not actually used on the host side Signed-off-by: Gregory Haskins <ghaskins@novell.com>
Diffstat (limited to 'drivers/vbus')
-rw-r--r--drivers/vbus/pci-bridge.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/vbus/pci-bridge.c b/drivers/vbus/pci-bridge.c
index add1cc37e1f9..9e37df15d250 100644
--- a/drivers/vbus/pci-bridge.c
+++ b/drivers/vbus/pci-bridge.c
@@ -862,6 +862,8 @@ vbus_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
if (ret < 0)
return ret;
+ pci_set_master(pdev);
+
ret = pci_request_regions(pdev, VBUS_PCI_NAME);
if (ret < 0) {
printk(KERN_ERR "VBUS_PCI: Could not init BARs: %d\n", ret);