summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-02-06 11:22:52 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-02-13 11:43:01 +0100
commitb8fa55b4dbc06fe35c31ceb3f015c543cb021705 (patch)
tree1c257d764ae2468999bf6d762b6a325673e74f2e /drivers
parent7057779c62fd8106bce7c4bece3bf4425638287d (diff)
downloadbarebox-b8fa55b4dbc06fe35c31ceb3f015c543cb021705.tar.gz
barebox-b8fa55b4dbc06fe35c31ceb3f015c543cb021705.tar.xz
mci: imx-esdhc: lower timeout message priority to dev_dbg
The timeout when waiting for a command to complete is expected in some cases, so do not bark loudly. This used to be dev_dbg() earlier already. Fixes: 4a7d7b16e2 ("mci: imx-esdhc: Share code for esdhc_send_cmd()") Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mci/imx-esdhc-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mci/imx-esdhc-common.c b/drivers/mci/imx-esdhc-common.c
index d0bef9470c..c9d589468f 100644
--- a/drivers/mci/imx-esdhc-common.c
+++ b/drivers/mci/imx-esdhc-common.c
@@ -214,7 +214,7 @@ int __esdhc_send_cmd(struct fsl_esdhc_host *host, struct mci_cmd *cmd,
SDHCI_INT_CMD_COMPLETE, SDHCI_INT_CMD_COMPLETE,
100 * MSECOND);
if (ret) {
- dev_err(host->dev, "timeout 1\n");
+ dev_dbg(host->dev, "timeout 1\n");
return -ETIMEDOUT;
}