Skip to content

Commit 11440da

Browse files
dolcinistorulf
authored andcommitted
mmc: sdhci_am654: lower power-on failed message severity
Lower the power-on failed message severity from warn to info when the controller does not power-up. It's normal to have this situation when the SD card slot is empty, therefore we should not warn the user about it. Fixes: 7ca0f16 ("mmc: sdhci_am654: Add workaround for card detect debounce timer") Signed-off-by: Francesco Dolcini <[email protected]> Acked-by: Adrian Hunter <[email protected]> Cc: [email protected] Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
1 parent fe15c26 commit 11440da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/host/sdhci_am654.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ static void sdhci_am654_write_b(struct sdhci_host *host, u8 val, int reg)
369369
MAX_POWER_ON_TIMEOUT, false, host, val,
370370
reg);
371371
if (ret)
372-
dev_warn(mmc_dev(host->mmc), "Power on failed\n");
372+
dev_info(mmc_dev(host->mmc), "Power on failed\n");
373373
}
374374
}
375375

0 commit comments

Comments
 (0)