diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2010-06-02 12:56:05 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2010-06-02 12:56:05 +0000 |
| commit | a34860524bc8d2ab2d31d9f32280891dd8e8c796 (patch) | |
| tree | 8f3b4dd5770570d9f03a9ae425f381371c8e52dd | |
| parent | 555ad6710fd897bfc12549197b606c90b06000b4 (diff) | |
| download | rockbox-a34860524bc8d2ab2d31d9f32280891dd8e8c796.zip rockbox-a34860524bc8d2ab2d31d9f32280891dd8e8c796.tar.gz rockbox-a34860524bc8d2ab2d31d9f32280891dd8e8c796.tar.bz2 rockbox-a34860524bc8d2ab2d31d9f32280891dd8e8c796.tar.xz | |
Fix PP5002 builds. Somehow an #else went missing along the line.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26480 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/thread-pp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/target/arm/thread-pp.c b/firmware/target/arm/thread-pp.c index 20105cc..8dfbd64 100644 --- a/firmware/target/arm/thread-pp.c +++ b/firmware/target/arm/thread-pp.c @@ -253,6 +253,7 @@ static inline void core_sleep(void) sleep_core(CURRENT_CORE); enable_irq(); } +#else /* PP5002 has no mailboxes - emulate using bytes */ static inline void core_sleep(unsigned int core) { |