diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-04-13 21:25:07 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-04-13 21:25:07 +0000 |
commit | bd6cb34f48cea2241078ad5421f069d1bec17cdb (patch) | |
tree | 4945a3c27f38511a47f7e62c62d2e01c8dfbb889 /firmware | |
parent | c0b463dd0b75fa1de6695e0fb77e5689904a7091 (diff) |
Hrmph. Forgot the other instance of cache hacking.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 275f04d029..9d9e0a648e 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -132,7 +132,7 @@ static void start_thread(void (*thread_func)(void), const void* addr) __attribut static void start_thread(void (*thread_func)(void), const void* addr) { /* r0 = thread_func, r1 = addr */ -#if NUM_CORES > 1 +#if NUM_CORES > 1 && CONFIG_CPU != PP5002 asm volatile ( "mov r2, #0 \n" "str r2, [r1, #40] \n" |