]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/mmc/host/tmio_mmc.c
Merge branch 'omap-pool'
[linux-2.6-omap-h63xx.git] / drivers / mmc / host / tmio_mmc.c
index 6a7a619048339a556be68aa7a3640dbf4720e023..63fbd5b7d312b503e285a68a1895af709c134027 100644 (file)
@@ -568,11 +568,11 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev)
        host->mmc = mmc;
        platform_set_drvdata(dev, mmc);
 
-       host->ctl = ioremap(res_ctl->start, res_ctl->end - res_ctl->start);
+       host->ctl = ioremap(res_ctl->start, resource_size(res_ctl));
        if (!host->ctl)
                goto host_free;
 
-       host->cnf = ioremap(res_cnf->start, res_cnf->end - res_cnf->start);
+       host->cnf = ioremap(res_cnf->start, resource_size(res_cnf));
        if (!host->cnf)
                goto unmap_ctl;
 
@@ -650,10 +650,10 @@ static int __devexit tmio_mmc_remove(struct platform_device *dev)
        if (mmc) {
                struct tmio_mmc_host *host = mmc_priv(mmc);
                mmc_remove_host(mmc);
-               mmc_free_host(mmc);
                free_irq(host->irq, host);
                iounmap(host->ctl);
                iounmap(host->cnf);
+               mmc_free_host(mmc);
        }
 
        return 0;