aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mmc/host/tmio_mmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c
index 6a7a61904833..4f3e265d0203 100644
--- a/drivers/mmc/host/tmio_mmc.c
+++ b/drivers/mmc/host/tmio_mmc.c
@@ -568,11 +568,11 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev)
568 host->mmc = mmc; 568 host->mmc = mmc;
569 platform_set_drvdata(dev, mmc); 569 platform_set_drvdata(dev, mmc);
570 570
571 host->ctl = ioremap(res_ctl->start, res_ctl->end - res_ctl->start); 571 host->ctl = ioremap(res_ctl->start, resource_size(res_ctl));
572 if (!host->ctl) 572 if (!host->ctl)
573 goto host_free; 573 goto host_free;
574 574
575 host->cnf = ioremap(res_cnf->start, res_cnf->end - res_cnf->start); 575 host->cnf = ioremap(res_cnf->start, resource_size(res_cnf));
576 if (!host->cnf) 576 if (!host->cnf)
577 goto unmap_ctl; 577 goto unmap_ctl;
578 578