aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/card/block.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2016-01-29 09:44:00 +0000
committerUlf Hansson <ulf.hansson@linaro.org>2016-02-29 11:03:08 +0100
commit09faf61d1c3f70866a2f0864c00df6daaff52012 (patch)
treee7342b72f9f4fbb1a3f32bc7b9fdd5ce58de0fd4 /drivers/mmc/card/block.c
parentmmc: core: improve mmc_of_parse_voltage() to return better status (diff)
downloadlinux-dev-09faf61d1c3f70866a2f0864c00df6daaff52012.tar.xz
linux-dev-09faf61d1c3f70866a2f0864c00df6daaff52012.zip
mmc: block: shut up "retrying because a re-tune was needed" message
Re-tuning is part of standard requirements for the higher speed SD card protocols, and is not an error when this occurs. When we retry a command due to a retune, we should not print a message to the kernel log. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/card/block.c')
-rw-r--r--drivers/mmc/card/block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 16d6597740b9..47bc87dafb00 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -1362,8 +1362,8 @@ static int mmc_blk_err_check(struct mmc_card *card,
if (brq->data.error) {
if (need_retune && !brq->retune_retry_done) {
- pr_info("%s: retrying because a re-tune was needed\n",
- req->rq_disk->disk_name);
+ pr_debug("%s: retrying because a re-tune was needed\n",
+ req->rq_disk->disk_name);
brq->retune_retry_done = 1;
return MMC_BLK_RETRY;
}