Blob Blame History Raw
From: Takashi Iwai <tiwai@suse.de>
Subject: Downgrade printk level for MMC SDHCI host version error
Patch-mainline: Never, SLE15 only
References: bsc#1097941

MMC SDHCI drivers spew an error when the controller returns the
version number greater than 2.  This is annoying on the machines with
O2 micro chip like many Dell models, where the chip gives 3.
Since it's the only known error case so far, downgrade the print level
so that it won't appear during boot with quiet option.

Signed-off-by: Takashi Iwai <tiwai@suse.de>

---
 drivers/mmc/host/sdhci.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -3242,7 +3242,7 @@ int sdhci_setup_host(struct sdhci_host *
 	override_timeout_clk = host->timeout_clk;
 
 	if (host->version > SDHCI_SPEC_300) {
-		pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
+		pr_info("%s: Unknown controller version (%d). You may experience problems.\n",
 		       mmc_hostname(mmc), host->version);
 	}