aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarkko Nikula <jarkko.nikula@bitmer.com>2014-02-22 11:01:39 -0500
committerChris Ball <chris@printf.net>2014-02-22 13:17:22 -0500
commit5b7d23aa5ddf2d3318370d369d287c9646156ca4 (patch)
tree4a03fa2100f79dbbb6c41cea5d4736c750b9c58b
parentae9b79c634b91d60fecd8663324434219b68b10f (diff)
mmc: omap: Remove duplicate host->irq assignment
host-irq is set twice so remove needless one. Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com> Acked-by: Tony Lindgren <tony@atomide.com> Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Chris Ball <chris@printf.net>
-rw-r--r--drivers/mmc/host/omap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c
index 927ed24d0708..b438f0addb3c 100644
--- a/drivers/mmc/host/omap.c
+++ b/drivers/mmc/host/omap.c
@@ -1375,7 +1375,6 @@ static int mmc_omap_probe(struct platform_device *pdev)
1375 host->mem_res = res; 1375 host->mem_res = res;
1376 host->irq = irq; 1376 host->irq = irq;
1377 host->use_dma = 1; 1377 host->use_dma = 1;
1378 host->irq = irq;
1379 host->phys_base = host->mem_res->start; 1378 host->phys_base = host->mem_res->start;
1380 host->virt_base = ioremap(res->start, resource_size(res)); 1379 host->virt_base = ioremap(res->start, resource_size(res));
1381 if (!host->virt_base) 1380 if (!host->virt_base)