From 7d993fcc86d44e9023c698f0b74a48ace042eeec Mon Sep 17 00:00:00 2001 From: Klaus Goger Date: Mon, 19 Aug 2019 13:55:38 +0200 Subject: increase mmc_rint_wait delay Toshiba eMMC requires a longer delay to work proper with spl --- drivers/mmc/sunxi_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/sunxi_mmc.c b/drivers/mmc/sunxi_mmc.c index e7ab828a8f..3baede20e5 100644 --- a/drivers/mmc/sunxi_mmc.c +++ b/drivers/mmc/sunxi_mmc.c @@ -294,7 +294,7 @@ static int mmc_rint_wait(struct mmc *mmc, unsigned int timeout_msecs, status & SUNXI_MMC_RINT_INTERRUPT_ERROR_BIT); return TIMEOUT; } - udelay(1000); + udelay(10000); } while (!(status & done_bit)); return 0; -- cgit v1.2.3