From 6c788e139eb0025aaf0fc088a779df9c9fefea53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Wed, 30 Apr 2025 11:29:56 +0200 Subject: [PATCH] fatfs: add support for mmc disks when generating FF_VOLUME_STRS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add zephyr,mmc-disk's disk names as they were missing causing fatfs to be unusable on boards that had otherwise valid DT configuration for the mmc disks. Signed-off-by: Benjamin Cabé --- modules/fatfs/zephyr_fatfs_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/fatfs/zephyr_fatfs_config.h b/modules/fatfs/zephyr_fatfs_config.h index cf06957eb2f..5046d48f75a 100644 --- a/modules/fatfs/zephyr_fatfs_config.h +++ b/modules/fatfs/zephyr_fatfs_config.h @@ -113,6 +113,7 @@ DT_FOREACH_STATUS_OKAY(zephyr_flash_disk, _FF_DISK_NAME) \ DT_FOREACH_STATUS_OKAY(zephyr_ram_disk, _FF_DISK_NAME) \ DT_FOREACH_STATUS_OKAY(zephyr_sdmmc_disk, _FF_DISK_NAME) \ + DT_FOREACH_STATUS_OKAY(zephyr_mmc_disk, _FF_DISK_NAME) \ DT_FOREACH_STATUS_OKAY(st_stm32_sdmmc, _FF_DISK_NAME) #undef FF_VOLUMES