summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/ata.c2
-rw-r--r--firmware/drivers/button.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c
index 2119216234..f63b795a19 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -83,7 +83,7 @@ static bool lba48 = false; /* set for 48 bit addressing */
83#endif 83#endif
84static long ata_stack[(DEFAULT_STACK_SIZE*3)/sizeof(long)]; 84static long ata_stack[(DEFAULT_STACK_SIZE*3)/sizeof(long)];
85static const char ata_thread_name[] = "ata"; 85static const char ata_thread_name[] = "ata";
86static struct event_queue ata_queue NOCACHEBSS_ATTR; 86static struct event_queue ata_queue;
87static bool initialized = false; 87static bool initialized = false;
88 88
89static long last_user_activity = -1; 89static long last_user_activity = -1;
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 25c590323a..3967dfcc1a 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -46,7 +46,7 @@
46#define MAX_EVENT_AGE HZ 46#define MAX_EVENT_AGE HZ
47#endif 47#endif
48 48
49struct event_queue button_queue NOCACHEBSS_ATTR; 49struct event_queue button_queue;
50 50
51static long lastbtn; /* Last valid button status */ 51static long lastbtn; /* Last valid button status */
52static long last_read; /* Last button status, for debouncing/filtering */ 52static long last_read; /* Last button status, for debouncing/filtering */