forked from len0rd/rockbox
cleanup storage defines
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18950 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3aa5832808
commit
19d1cacb1a
71 changed files with 142 additions and 114 deletions
|
@ -28,10 +28,10 @@
|
|||
|
||||
/* how to name volumes, first char must be outside of legal file names,
|
||||
a number gets appended to enumerate, if applicable */
|
||||
#ifdef HAVE_MMC
|
||||
#if (CONFIG_STORAGE & STORAGE_MMC)
|
||||
#define VOL_NAMES "<MMC%d>"
|
||||
#define VOL_ENUM_POS 4 /* position of %d, to avoid runtime calculation */
|
||||
#elif defined(HAVE_HOTSWAP)
|
||||
#elif (CONFIG_STORAGE & STORAGE_SD)
|
||||
#define VOL_NAMES "<microSD%d>"
|
||||
#define VOL_ENUM_POS 8 /* position of %d, to avoid runtime calculation */
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue