Signed-off-by: Gerd Hoffmann <kraxel@xxxxxxxxxx> --- drivers/mmc/host/bcm2835.c | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/drivers/mmc/host/bcm2835.c b/drivers/mmc/host/bcm2835.c index ceee4cf..ffb9140 100644 --- a/drivers/mmc/host/bcm2835.c +++ b/drivers/mmc/host/bcm2835.c @@ -645,7 +645,6 @@ bool bcm2835_send_command(struct bcm2835_host *host, struct device *dev = &host->pdev->dev; u32 sdcmd, sdhsts; unsigned long timeout; - int delay; WARN_ON(host->cmd); @@ -660,26 +659,13 @@ bool bcm2835_send_command(struct bcm2835_host *host, cmd->opcode, cmd->arg, cmd->flags); } - /* Wait max 100 ms */ - timeout = 10000; - - while (readl(host->ioaddr + SDCMD) & SDCMD_NEW_FLAG) { - if (timeout == 0) { - dev_err(dev, "previous command never completed.\n"); - bcm2835_dumpregs(host); - cmd->error = -EILSEQ; - tasklet_schedule(&host->finish_tasklet); - return false; - } - timeout--; - udelay(10); - } - - delay = (10000 - timeout) / 100; - if (delay > host->max_delay) { - host->max_delay = delay; - dev_warn(dev, "controller hung for %d ms\n", - host->max_delay); + sdcmd = bcm2835_read_wait_sdcmd(host, 100, false); + if (sdcmd & SDCMD_NEW_FLAG) { + dev_err(dev, "previous command never completed.\n"); + bcm2835_dumpregs(host); + cmd->error = -EILSEQ; + tasklet_schedule(&host->finish_tasklet); + return false; } timeout = jiffies; -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html