mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
ae9b79c634
commit
5b7d23aa5d
|
@ -1375,7 +1375,6 @@ static int mmc_omap_probe(struct platform_device *pdev)
|
||||||
host->mem_res = res;
|
host->mem_res = res;
|
||||||
host->irq = irq;
|
host->irq = irq;
|
||||||
host->use_dma = 1;
|
host->use_dma = 1;
|
||||||
host->irq = irq;
|
|
||||||
host->phys_base = host->mem_res->start;
|
host->phys_base = host->mem_res->start;
|
||||||
host->virt_base = ioremap(res->start, resource_size(res));
|
host->virt_base = ioremap(res->start, resource_size(res));
|
||||||
if (!host->virt_base)
|
if (!host->virt_base)
|
||||||
|
|
Loading…
Reference in New Issue