diff options
| author | Linux Build Service Account <lnxbuild@quicinc.com> | 2018-01-18 09:36:24 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-01-18 09:36:24 -0800 |
| commit | 6b202df713d7dafef2df0e9ef1c97c6632c60eac (patch) | |
| tree | c72e0f6d5d902a38d814d21d66103122a3b4ed38 | |
| parent | f5e3d60a299eaf1bc386d74534da0a79f92e8147 (diff) | |
| parent | e9bcddf16c35c93731e68c7b5eb2f3a4d5a63b64 (diff) | |
Merge "mmc: sdhci: Remove some redundant stack information"
| -rw-r--r-- | drivers/mmc/host/sdhci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 5906bba0aeff..8055fddac722 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1702,7 +1702,8 @@ static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq) sdhci_runtime_pm_get(host); if (sdhci_check_state(host)) { sdhci_dump_state(host); - WARN(1, "sdhci in bad state"); + pr_err("%s: sdhci in bad state\n", + mmc_hostname(host->mmc)); mrq->cmd->error = -EIO; if (mrq->data) mrq->data->error = -EIO; |
