1
0
Fork 0

mmc: dw_mmc-pci: get resources from a proper BAR

There is a typo when the mapped space is from BAR 2, but BAR 0 is
used instead.  This patch fixes the typo.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Prabu Thangamuthu <Prabu.T@synopsys.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
hifive-unleashed-5.1
Andy Shevchenko 2013-08-08 13:44:57 +03:00 committed by Chris Ball
parent 3af9d15c71
commit afeb52d6b5
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static int dw_mci_pci_probe(struct pci_dev *pdev,
if (ret)
return ret;
host->regs = pcim_iomap_table(pdev)[0];
host->regs = pcim_iomap_table(pdev)[PCI_BAR_NO];
ret = dw_mci_probe(host);
if (ret)