[PATCH 1/2] Enable PCI bus mastering by default

From: Johannes Thumshirn
Date: Wed Sep 14 2016 - 06:05:39 EST


From: Michael Moese <michael.moese@xxxxxx>

In order to successfully perform DMA operations on PCI devices,
it is necessary to enble PCI bus mastering, so enable it by default.

Signed-off-by: Michael Moese <michael.moese@xxxxxx>
Signed-off-by: Johannes Thumshirn <jthumshirn@xxxxxxx>
---
drivers/mcb/mcb-pci.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/mcb/mcb-pci.c b/drivers/mcb/mcb-pci.c
index b15a034..af4d2f2 100644
--- a/drivers/mcb/mcb-pci.c
+++ b/drivers/mcb/mcb-pci.c
@@ -46,6 +46,7 @@ static int mcb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
dev_err(&pdev->dev, "Failed to enable PCI device\n");
return -ENODEV;
}
+ pci_set_master(pdev);

priv->mapbase = pci_resource_start(pdev, 0);
if (!priv->mapbase) {
--
1.8.5.6