summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2008-10-31 21:25:04 +0000
committerFrank Gevaerts <frank@gevaerts.be>2008-10-31 21:25:04 +0000
commit19d1cacb1a63c306d842f81127d382512c49a062 (patch)
treebac051d18aae2c9f201744890177e0021e5269be /firmware/include/dir.h
parent3aa58328080ab9a254d9f2329696fa4309a30d50 (diff)
downloadrockbox-19d1cacb1a63c306d842f81127d382512c49a062.tar.gz
rockbox-19d1cacb1a63c306d842f81127d382512c49a062.zip
cleanup storage defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18950 a1c6a512-1295-4272-9138-f99709370657
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