From e8f575571a997f3f56be4142e00625698a7536c5 Mon Sep 17 00:00:00 2001 From: Mirai SHINJO Date: Mon, 24 Mar 2025 19:28:17 -0400 Subject: [PATCH] sd: correct mismatched comment for CONFIG_SDMMC_STACK The closing comment for CONFIG_SDMMC_STACK #ifdef directive was incorrectly labeled as CONFIG_SDIO_STACK. This commit corrects the comment to reflect the correct configuration macro and improve code clarity. Signed-off-by: Mirai SHINJO --- subsys/sd/sd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/sd/sd.c b/subsys/sd/sd.c index 02190397966f..d8c28914380f 100644 --- a/subsys/sd/sd.c +++ b/subsys/sd/sd.c @@ -215,7 +215,7 @@ static int sd_command_init(struct sd_card *card) if (!sdmmc_card_init(card)) { return 0; } -#endif /* CONFIG_SDIO_STACK */ +#endif /* CONFIG_SDMMC_STACK */ #ifdef CONFIG_MMC_STACK ret = sd_idle(card); if (ret) {