summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Goger <klaus.goger@theobroma-systems.com>2019-08-19 13:55:38 +0200
committerKlaus Goger <klaus.goger@theobroma-systems.com>2019-08-19 13:55:38 +0200
commit7d993fcc86d44e9023c698f0b74a48ace042eeec (patch)
tree2ecf99f34fa64656db5e440b487bf1ac30f5f121
parent0dcb9571dfa52f8ea83a74ee61b70d88c302876d (diff)
increase mmc_rint_wait delay
Toshiba eMMC requires a longer delay to work proper with spl
-rw-r--r--drivers/mmc/sunxi_mmc.c2
1 files changed, 1 insertions, 1 deletions
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;