summaryrefslogtreecommitdiff
path: root/firmware/drivers/ata.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-08-03 05:58:46 +0000
committerJens Arnold <amiconn@rockbox.org>2004-08-03 05:58:46 +0000
commit2b0694c6944f2ea155291b62a00c11b89cd63914 (patch)
tree7b69164f0a3d5c19c3a6db67b8f7e42a24266821 /firmware/drivers/ata.c
parent586ec8274dbe487f3c5567d067965b17e5e228cd (diff)
downloadrockbox-2b0694c6944f2ea155291b62a00c11b89cd63914.tar.gz
rockbox-2b0694c6944f2ea155291b62a00c11b89cd63914.zip
More const policeing step 3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4982 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 1394ceaf29..663df600ca 100644
--- a/firmware/drivers/ata.c
+++ b/firmware/drivers/ata.c
@@ -98,7 +98,7 @@ static bool poweroff = false;
98static int poweroff_timeout = 2*HZ; 98static int poweroff_timeout = 2*HZ;
99#endif 99#endif
100static char ata_stack[DEFAULT_STACK_SIZE]; 100static char ata_stack[DEFAULT_STACK_SIZE];
101static char ata_thread_name[] = "ata"; 101static const char ata_thread_name[] = "ata";
102static struct event_queue ata_queue; 102static struct event_queue ata_queue;
103static bool initialized = false; 103static bool initialized = false;
104static bool delayed_write = false; 104static bool delayed_write = false;