summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 896cc0fb3d..4bcea0542d 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -651,6 +651,11 @@ static inline void core_sleep(struct thread_entry **waking)
651 "msr cpsr_c, r0 \n" 651 "msr cpsr_c, r0 \n"
652 : : "r"(waking) : "r0", "r1", "r2", "r3"); 652 : : "r"(waking) : "r0", "r1", "r2", "r3");
653} 653}
654#elif defined(CPU_TCC77X)
655static inline void core_sleep(struct thread_entry **waking)
656{
657 #warning TODO: Implement core_sleep
658}
654#else 659#else
655static inline void core_sleep(struct thread_entry **waking) 660static inline void core_sleep(struct thread_entry **waking)
656{ 661{