mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-23 15:41:33 +00:00
mmc: omap: improve stat wait message
The message didn't state that it's waiting for STAT to _clear_, and printing the STAT value itself can help to identify problems. Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> Acked-by: Tom Rini <trini@ti.com>
This commit is contained in:
parent
b1e725f2c6
commit
15ceb1de81
1 changed files with 2 additions and 1 deletions
|
@ -215,7 +215,8 @@ static int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
|
||||||
start = get_timer(0);
|
start = get_timer(0);
|
||||||
while (readl(&mmc_base->stat)) {
|
while (readl(&mmc_base->stat)) {
|
||||||
if (get_timer(0) - start > MAX_RETRY_MS) {
|
if (get_timer(0) - start > MAX_RETRY_MS) {
|
||||||
printf("%s: timedout waiting for stat!\n", __func__);
|
printf("%s: timedout waiting for STAT (%x) to clear\n",
|
||||||
|
__func__, readl(&mmc_base->stat));
|
||||||
return TIMEOUT;
|
return TIMEOUT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue