summaryrefslogtreecommitdiff
path: root/firmware/drivers/ata_mmc.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/ata_mmc.c')
-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;
static struct mutex mmc_mutex;
#ifdef HAVE_HOTSWAP
+static bool mmc_monitor_enabled = true;
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 struct event_queue mmc_queue;
-static bool mmc_monitor_enabled = true;
-#endif
static bool initialized = false;
static bool new_mmc_circuit;