diff options
author | Jarkko Nikula <jarkko.nikula@bitmer.com> | 2014-02-22 18:01:39 +0200 |
---|---|---|
committer | Chris Ball <chris@printf.net> | 2014-02-22 13:17:22 -0500 |
commit | 5b7d23aa5ddf2d3318370d369d287c9646156ca4 (patch) | |
tree | 4a03fa2100f79dbbb6c41cea5d4736c750b9c58b /drivers/mmc/host/omap.c | |
parent | ae9b79c634b91d60fecd8663324434219b68b10f (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>
Diffstat (limited to 'drivers/mmc/host/omap.c')
-rw-r--r-- | drivers/mmc/host/omap.c | 1 |
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) host->mem_res = res; host->irq = irq; host->use_dma = 1; - host->irq = irq; host->phys_base = host->mem_res->start; host->virt_base = ioremap(res->start, resource_size(res)); if (!host->virt_base) |