1
0
Fork 0
forked from len0rd/rockbox

Missed one hotswap ifdef...

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11466 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-11-08 08:04:11 +00:00
parent af2d91f629
commit 5d67b4906d

View file

@ -92,11 +92,13 @@ long last_disk_activity = -1;
static struct mutex mmc_mutex; static struct mutex mmc_mutex;
#ifdef HAVE_HOTSWAP #ifdef HAVE_HOTSWAP
static bool mmc_monitor_enabled = true;
static long mmc_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)]; static long mmc_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
#else
static long mmc_stack[DEFAULT_STACK_SIZE/sizeof(long)];
#endif
static const char mmc_thread_name[] = "mmc"; static const char mmc_thread_name[] = "mmc";
static struct event_queue mmc_queue; static struct event_queue mmc_queue;
static bool mmc_monitor_enabled = true;
#endif
static bool initialized = false; static bool initialized = false;
static bool new_mmc_circuit; static bool new_mmc_circuit;