summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-11-08 08:04:11 +0000
committerJens Arnold <amiconn@rockbox.org>2006-11-08 08:04:11 +0000
commit5d67b4906dea49cf2c139cc89491a176a4e73c07 (patch)
tree1c5e6b60e5c9768eb963077788fc03e1496145b4
parentaf2d91f629c66c6ba1c3d89f1e321be184b99312 (diff)
downloadrockbox-5d67b4906dea49cf2c139cc89491a176a4e73c07.tar.gz
rockbox-5d67b4906dea49cf2c139cc89491a176a4e73c07.zip
Missed one hotswap ifdef...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11466 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/ata_mmc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/drivers/ata_mmc.c b/firmware/drivers/ata_mmc.c
index 0920ad730b..65abcb57e5 100644
--- a/firmware/drivers/ata_mmc.c
+++ b/firmware/drivers/ata_mmc.c
@@ -92,11 +92,13 @@ long last_disk_activity = -1;
92static struct mutex mmc_mutex; 92static struct mutex mmc_mutex;
93 93
94#ifdef HAVE_HOTSWAP 94#ifdef HAVE_HOTSWAP
95static bool mmc_monitor_enabled = true;
95static long mmc_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)]; 96static long mmc_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
97#else
98static long mmc_stack[DEFAULT_STACK_SIZE/sizeof(long)];
99#endif
96static const char mmc_thread_name[] = "mmc"; 100static const char mmc_thread_name[] = "mmc";
97static struct event_queue mmc_queue; 101static struct event_queue mmc_queue;
98static bool mmc_monitor_enabled = true;
99#endif
100static bool initialized = false; 102static bool initialized = false;
101static bool new_mmc_circuit; 103static bool new_mmc_circuit;
102 104