summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2020-01-20 18:47:35 +0900
committerJaehoon Chung <jh80.chung@samsung.com>2024-10-28 20:27:55 +0900
commitf1db5f8086b5699d95ac9132c21c5a8a183a96e3 (patch)
treee50b38f1decebe32fdb85effc5441165ee950af0 /drivers
parenta4e978f5c80bc1faee01a422a68c9efe4dfd4b7a (diff)
downloadu-boot-f1db5f8086b5699d95ac9132c21c5a8a183a96e3.tar.gz
u-boot-f1db5f8086b5699d95ac9132c21c5a8a183a96e3.tar.bz2
u-boot-f1db5f8086b5699d95ac9132c21c5a8a183a96e3.zip
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 <jh80.chung@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/sdhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index 560b7e889c..d57324471b 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -893,7 +893,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 ADMA!!\n",
+ debug("%s: Your controller doesn't support SDMA!!\n",
__func__);
return -EINVAL;
}