aboutsummaryrefslogtreecommitdiff
path: root/drivers/mmc
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2013-08-08 13:44:58 +0300
committerChris Ball <cjb@laptop.org>2013-08-25 00:10:12 -0400
commit638585f6842ad0478f72c2cd59fa31f166eef2cd (patch)
tree7ce50ecab7202ac6ccb4a8dd2f1b9a27111db0bd /drivers/mmc
parentafeb52d6b579ae4ee9bd4b63dac4579b39f8b1c0 (diff)
mmc: dw_mmc-pci: enable bus-mastering mode
This patch enables bus-mastering mode for MMC controller to allow IDMAC transfers. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Seungwon Jeon <tgih.jun@samsung.com> Tested-by: Prabu Thangamuthu <Prabu.T@synopsys.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/dw_mmc-pci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/host/dw_mmc-pci.c b/drivers/mmc/host/dw_mmc-pci.c
index 7d148d68e49..f70546a3a7c 100644
--- a/drivers/mmc/host/dw_mmc-pci.c
+++ b/drivers/mmc/host/dw_mmc-pci.c
@@ -61,6 +61,8 @@ static int dw_mci_pci_probe(struct pci_dev *pdev,
host->regs = pcim_iomap_table(pdev)[PCI_BAR_NO];
+ pci_set_master(pdev);
+
ret = dw_mci_probe(host);
if (ret)
return ret;