From a33bc0f32183b137c744c6f1012e69ba77e4333b Mon Sep 17 00:00:00 2001 From: Shawn Lin Date: Thu, 12 Mar 2020 08:43:16 +0800 Subject: [PATCH] [component] sdio: Fix mmc mount function if the whole device is a partition If the whole sd card was formatted as a partition, current code break out the loop mistakenly, so it skips dfs_mount_device later. Simply remove the broken 'break' to solve this problem. Signed-off-by: Shawn Lin --- components/drivers/sdio/block_dev.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/drivers/sdio/block_dev.c b/components/drivers/sdio/block_dev.c index 5db0f38c08..602acb9aa7 100644 --- a/components/drivers/sdio/block_dev.c +++ b/components/drivers/sdio/block_dev.c @@ -460,8 +460,6 @@ rt_int32_t rt_mmcsd_blk_probe(struct rt_mmcsd_card *card) rt_device_register(&blk_dev->dev, "sd0", RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_REMOVABLE | RT_DEVICE_FLAG_STANDALONE); rt_list_insert_after(&blk_devices, &blk_dev->list); - - break; } else { -- GitLab