From b8fa55b4dbc06fe35c31ceb3f015c543cb021705 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 6 Feb 2020 11:22:52 +0100 Subject: 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 --- drivers/mci/imx-esdhc-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers') 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; } -- cgit v1.2.3