diff mbox series

Modify the print log when adma is not supported

Message ID 20230331034551.6164-1-chenzhipeng@eswincomputing.com
State New
Delegated to: Jaehoon Chung
Headers show
Series Modify the print log when adma is not supported | expand

Commit Message

Zhipeng Chen March 31, 2023, 3:45 a.m. UTC
---
 drivers/mmc/sdhci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index c6b250b9a1..4e57e12732 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -882,7 +882,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",
+		printf("%s: Your controller doesn't support ADMA!!\n",
 		       __func__);
 		return -EINVAL;
 	}