aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/mfd/glamo/glamo-mci.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/mfd/glamo/glamo-mci.c b/drivers/mfd/glamo/glamo-mci.c
index 238f6b9574f..3e3ffeaff71 100644
--- a/drivers/mfd/glamo/glamo-mci.c
+++ b/drivers/mfd/glamo/glamo-mci.c
@@ -644,12 +644,8 @@ static void glamo_mci_send_request(struct mmc_host *mmc)
GLAMO_STAT1_MMC_BWERR |
GLAMO_STAT1_MMC_BRERR)))) && (insanity_timeout--));
- if (insanity_timeout < 0) {
- cmd->error = -ETIMEDOUT;
- dev_err(&host->pdev->dev, "***** insanity timeout cmd 0x%x, "
- "arg 0x%x data=%p mrq->stop=%p flags 0x%x\n",
- cmd->opcode, cmd->arg, cmd->data, cmd->mrq->stop, cmd->flags);
- }
+ if (insanity_timeout < 0)
+ dev_info(&host->pdev->dev, "command timeout, continuing\n");
if (status & (GLAMO_STAT1_MMC_RTOUT |
GLAMO_STAT1_MMC_DTOUT))