diff options
author | Troy Kisky <troy.kisky@boundarydevices.com> | 2014-04-28 17:22:37 -0700 |
---|---|---|
committer | Troy Kisky <troy.kisky@boundarydevices.com> | 2014-04-28 17:22:37 -0700 |
commit | 11028f5276fa78bf3eb96bae7974d30ac0f64003 (patch) | |
tree | 9e343d8a3c85d18d92f35cbb0aa86f1f015ff96b /drivers | |
parent | 731f96d038c39af8ea916adba70034a204b0389a (diff) |
sdhci: print opcode/retries on timeout error
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/sdhci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 829d91ff12ae..d533131d3839 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -2204,8 +2204,9 @@ static void sdhci_timeout_timer(unsigned long data) spin_lock_irqsave(&host->lock, flags); if (host->mrq) { - pr_err("%s: Timeout waiting for hardware " - "interrupt.\n", mmc_hostname(host->mmc)); + pr_err("%s: Timeout waiting for hardware interrupt. retries left=%d opcode=%x\n", + mmc_hostname(host->mmc), host->cmd ? host->cmd->retries : 0, + host->cmd ? host->cmd->opcode : 0); sdhci_dumpregs(host); if (host->data) { |