summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/dir.h')
-rw-r--r--firmware/include/dir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h
index 69403a7572..5aa6cde35a 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -28,10 +28,10 @@
28 28
29/* how to name volumes, first char must be outside of legal file names, 29/* how to name volumes, first char must be outside of legal file names,
30 a number gets appended to enumerate, if applicable */ 30 a number gets appended to enumerate, if applicable */
31#ifdef HAVE_MMC 31#if (CONFIG_STORAGE & STORAGE_MMC)
32#define VOL_NAMES "<MMC%d>" 32#define VOL_NAMES "<MMC%d>"
33#define VOL_ENUM_POS 4 /* position of %d, to avoid runtime calculation */ 33#define VOL_ENUM_POS 4 /* position of %d, to avoid runtime calculation */
34#elif defined(HAVE_HOTSWAP) 34#elif (CONFIG_STORAGE & STORAGE_SD)
35#define VOL_NAMES "<microSD%d>" 35#define VOL_NAMES "<microSD%d>"
36#define VOL_ENUM_POS 8 /* position of %d, to avoid runtime calculation */ 36#define VOL_ENUM_POS 8 /* position of %d, to avoid runtime calculation */
37#else 37#else