summaryrefslogtreecommitdiff
path: root/firmware/drivers/button.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-10-16 22:00:51 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-10-16 22:00:51 +0000
commit84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b (patch)
treeb082d38196667f747bbcb9325dc65339d61b67b2 /firmware/drivers/button.c
parent28936603be8ab9c8c3e2284d835c3961b4033bfd (diff)
downloadrockbox-84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b.tar.gz
rockbox-84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b.zip
Take out some NOCACHEBSS_ATTR's that were accidentally left. Put some threading code in IRAM that should be there on PP502x.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15155 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/button.c')
-rw-r--r--firmware/drivers/button.c2
1 files changed, 1 insertions, 1 deletions
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 */