mmc: msm_sdcc: Change initialization order of busclk_timer in probe
Intialize busclk_timer before it is accessed in probe. Signed-off-by: Sahitya Tummala <stummala@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
4a268e0879
commit
19207f056d
drivers/mmc/host
|
@ -1218,6 +1218,10 @@ msmsdcc_probe(struct platform_device *pdev)
|
||||||
host->plat = plat;
|
host->plat = plat;
|
||||||
host->mmc = mmc;
|
host->mmc = mmc;
|
||||||
host->curr.cmd = NULL;
|
host->curr.cmd = NULL;
|
||||||
|
init_timer(&host->busclk_timer);
|
||||||
|
host->busclk_timer.data = (unsigned long) host;
|
||||||
|
host->busclk_timer.function = msmsdcc_busclk_expired;
|
||||||
|
|
||||||
|
|
||||||
host->cmdpoll = 1;
|
host->cmdpoll = 1;
|
||||||
|
|
||||||
|
@ -1335,10 +1339,6 @@ msmsdcc_probe(struct platform_device *pdev)
|
||||||
host->eject = !host->oldstat;
|
host->eject = !host->oldstat;
|
||||||
}
|
}
|
||||||
|
|
||||||
init_timer(&host->busclk_timer);
|
|
||||||
host->busclk_timer.data = (unsigned long) host;
|
|
||||||
host->busclk_timer.function = msmsdcc_busclk_expired;
|
|
||||||
|
|
||||||
ret = request_irq(cmd_irqres->start, msmsdcc_irq, IRQF_SHARED,
|
ret = request_irq(cmd_irqres->start, msmsdcc_irq, IRQF_SHARED,
|
||||||
DRIVER_NAME " (cmd)", host);
|
DRIVER_NAME " (cmd)", host);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
Loading…
Reference in New Issue