summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 90537f9a84..327b07d39e 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -74,7 +74,7 @@ static int usb_mmc_countdown = 0;
74 74
75/* FIXME: The extra 0x400 is consumed by fat_mount() when the fsinfo 75/* FIXME: The extra 0x400 is consumed by fat_mount() when the fsinfo
76 needs updating */ 76 needs updating */
77static long usb_stack[(DEFAULT_STACK_SIZE + 0x400)/4]; 77static long usb_stack[(DEFAULT_STACK_SIZE + 0x400)/sizeof(long)];
78static const char usb_thread_name[] = "usb"; 78static const char usb_thread_name[] = "usb";
79static struct event_queue usb_queue; 79static struct event_queue usb_queue;
80static bool last_usb_status; 80static bool last_usb_status;