Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09faf61d authored by Russell King's avatar Russell King Committed by Ulf Hansson
Browse files

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: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent cf925747
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1362,7 +1362,7 @@ 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",
			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;