diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-08-08 06:44:57 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-08-25 00:10:05 -0400 |
commit | afeb52d6b579ae4ee9bd4b63dac4579b39f8b1c0 (patch) | |
tree | 4f3fbb8421902b6f448be1f4eeb11367a8241e15 /drivers/mmc | |
parent | 3af9d15c719017feb63fa99f89ac6009a5a3d467 (diff) |
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>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc-pci.c b/drivers/mmc/host/dw_mmc-pci.c index b456b0c35231..7d148d68e494 100644 --- a/drivers/mmc/host/dw_mmc-pci.c +++ b/drivers/mmc/host/dw_mmc-pci.c | |||
@@ -59,7 +59,7 @@ static int dw_mci_pci_probe(struct pci_dev *pdev, | |||
59 | if (ret) | 59 | if (ret) |
60 | return ret; | 60 | return ret; |
61 | 61 | ||
62 | host->regs = pcim_iomap_table(pdev)[0]; | 62 | host->regs = pcim_iomap_table(pdev)[PCI_BAR_NO]; |
63 | 63 | ||
64 | ret = dw_mci_probe(host); | 64 | ret = dw_mci_probe(host); |
65 | if (ret) | 65 | if (ret) |