From 398718f0f9323d62a03a6ce441f9ff1cb36d61d1 Mon Sep 17 00:00:00 2001 From: Jianjia Ma Date: Tue, 13 Apr 2021 18:27:53 +0100 Subject: [PATCH] Update mmc.c --- components/drivers/sdio/mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/sdio/mmc.c b/components/drivers/sdio/mmc.c index e48a7ebcfb..d8f3a9e0a5 100644 --- a/components/drivers/sdio/mmc.c +++ b/components/drivers/sdio/mmc.c @@ -337,7 +337,7 @@ static int mmc_select_bus_width(struct rt_mmcsd_card *card, rt_uint8_t *ext_csd) for(trys = 0; trys < 5; trys++){ mmcsd_set_bus_width(host, bus_width); - mmcsd_delay_ms(10); + mmcsd_delay_ms(10); err = mmc_compare_ext_csds(card, ext_csd, bus_width); if(!err) break;