From 1586e4422ad74ca379a19467bb7a954359f1ed97 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Mon, 20 Jan 2020 18:47:35 +0900 Subject: [PATCH] mmc: sdhci: add quriks relevant to broken SDMA ADd quirks relevant to broken SDMA. If set to SDHCI_QUIRK_BROKEN_SDMA, it should be run the pio mode. Change-Id: Iddae84fea4d1de0301b9afd45f9f55d7d3f8de74 Signed-off-by: Jaehoon Chung --- drivers/mmc/sdhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index 03bfd9d..fe4542c 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -826,7 +826,7 @@ int sdhci_setup_cfg(struct mmc_config *cfg, struct sdhci_host *host, #endif #if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA) if (!(caps & SDHCI_CAN_DO_ADMA2)) { - printf("%s: Your controller doesn't support SDMA!!\n", + debug("%s: Your controller doesn't support SDMA!!\n", __func__); return -EINVAL; } -- 2.7.4