summaryrefslogtreecommitdiff
path: root/firmware/drivers/ata.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/ata.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/ata.c')
-rw-r--r--firmware/drivers/ata.c2
1 files changed, 1 insertions, 1 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;