mmc: core: report tuning command execution failure reason
authorRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 29 Jan 2016 09:44:05 +0000 (09:44 +0000)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 29 Feb 2016 10:03:08 +0000 (11:03 +0100)
Print the error code when the tuning command fails.  This allows the
reason for the failure to be reported, which aids debugging.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/core/core.c

index 319efdc1ad2158316f76a9d7cfbc1c50e62c1f2c..41b1e761965f7459c0d8f2849f7feb2c73f2ca30 100644 (file)
@@ -1079,7 +1079,8 @@ int mmc_execute_tuning(struct mmc_card *card)
        err = host->ops->execute_tuning(host, opcode);
 
        if (err)
-               pr_err("%s: tuning execution failed\n", mmc_hostname(host));
+               pr_err("%s: tuning execution failed: %d\n",
+                       mmc_hostname(host), err);
        else
                mmc_retune_enable(host);
 
This page took 0.027327 seconds and 5 git commands to generate.