mmc: block: shut up "retrying because a re-tune was needed" message
authorRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 29 Jan 2016 09:44:00 +0000 (09:44 +0000)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 29 Feb 2016 10:03:08 +0000 (11:03 +0100)
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>
drivers/mmc/card/block.c

index 16d6597740b9eeae4e25b88021a2ab9d20d9cb0f..47bc87dafb003d5552a55da4e42aa9cff447301b 100644 (file)
@@ -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;
                }
This page took 0.025259 seconds and 5 git commands to generate.