summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-14 16:28:35 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-14 16:28:35 +0000
commitebe652b51af0bdabf9bbbf3b6991429919c1ef5a (patch)
treef74a5bd4c66cc299ac6d8bad37f01f37e8b33603
parent1e294e3f2518a5dd813a773b23271b12d22eeac4 (diff)
downloadrockbox-ebe652b51af0bdabf9bbbf3b6991429919c1ef5a.tar.gz
rockbox-ebe652b51af0bdabf9bbbf3b6991429919c1ef5a.zip
Forgot this..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18513 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/thread.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 58d1b39d74..6ba3bd9231 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -1089,7 +1089,6 @@ static inline void load_context(const void* addr)
1089 */ 1089 */
1090static inline void core_sleep(void) 1090static inline void core_sleep(void)
1091{ 1091{
1092#if 0
1093#if CONFIG_CPU == JZ4732 1092#if CONFIG_CPU == JZ4732
1094 REG_CPM_LCR &= ~CPM_LCR_LPM_MASK; 1093 REG_CPM_LCR &= ~CPM_LCR_LPM_MASK;
1095 REG_CPM_LCR |= CPM_LCR_LPM_SLEEP; 1094 REG_CPM_LCR |= CPM_LCR_LPM_SLEEP;
@@ -1109,7 +1108,6 @@ static inline void core_sleep(void)
1109 REG_CPM_LCR &= ~CPM_LCR_LPM_MASK; 1108 REG_CPM_LCR &= ~CPM_LCR_LPM_MASK;
1110 REG_CPM_LCR |= CPM_LCR_LPM_IDLE; 1109 REG_CPM_LCR |= CPM_LCR_LPM_IDLE;
1111#endif 1110#endif
1112#endif
1113} 1111}
1114 1112
1115 1113