From 755cde372cb224bba0945e3834b4cda1ead18681 Mon Sep 17 00:00:00 2001 From: Evlers <1425295900@qq.com> Date: Fri, 5 Jul 2024 09:37:34 +0800 Subject: [PATCH] fix a bug that read members in non-existent functions --- components/drivers/sdio/sdio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/drivers/sdio/sdio.c b/components/drivers/sdio/sdio.c index bc1951792f..9fa3f539cd 100644 --- a/components/drivers/sdio/sdio.c +++ b/components/drivers/sdio/sdio.c @@ -6,7 +6,8 @@ * Change Logs: * Date Author Notes * 2012-01-13 weety first version - * 2024-04-04 Evlers fix an issue where repeated remove of card resulted in assertions + * 2024-07-04 Evlers fix an issue where repeated remove of card resulted in assertions + * 2024-07-05 Evlers fix a bug that read members in non-existent functions */ #include @@ -1030,8 +1031,7 @@ static void sdio_irq_thread(void *param) struct rt_sdio_function *func = card->sdio_function[i]; if (!func) { - mmcsd_dbg("pending IRQ for " - "non-existant function %d\n", func->num); + mmcsd_dbg("pending IRQ for non-existant function\n"); goto out; } else if (func->irq_handler)