summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2008-03-21 19:34:46 +0000
committerFrank Gevaerts <frank@gevaerts.be>2008-03-21 19:34:46 +0000
commit1544b36966c692e20d711b920eade06487996eb6 (patch)
treec49d7caf7009ebb63f604241832ec5f295846eef
parentf65cf301fbbbb23ffde08527755ff57e973c7bef (diff)
downloadrockbox-1544b36966c692e20d711b920eade06487996eb6.tar.gz
rockbox-1544b36966c692e20d711b920eade06487996eb6.zip
move an #endif to its proper place. This should not actually change anything
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16732 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 977a3fbccb..e743c9073f 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -255,8 +255,8 @@ static void usb_thread(void)
255#endif /* USE_ROCKBOX_USB */ 255#endif /* USE_ROCKBOX_USB */
256#ifdef HAVE_PRIORITY_SCHEDULING 256#ifdef HAVE_PRIORITY_SCHEDULING
257 thread_set_priority(usb_thread_entry,PRIORITY_REALTIME); 257 thread_set_priority(usb_thread_entry,PRIORITY_REALTIME);
258 exclusive_ata_access = true;
259#endif 258#endif
259 exclusive_ata_access = true;
260 260
261#else 261#else
262 usb_slave_mode(true); 262 usb_slave_mode(true);