summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index 7f833c3ac9..fc8b9e5728 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -1,4 +1,4 @@
1/*************************************************************************** 1e/***************************************************************************
2 * __________ __ ___. 2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
@@ -207,7 +207,7 @@ void switch_thread(void)
207 207
208 /* Check if the current thread stack is overflown */ 208 /* Check if the current thread stack is overflown */
209 stackptr = thread_stack[current]; 209 stackptr = thread_stack[current];
210#if ! (defined(IRIVER_H100) || defined (ARCHOS_GMINI120)) 210#if ! (defined(IRIVER_H100) || (CONFIG_CPU == TCC730))
211 if(stackptr[0] != DEADBEEF) 211 if(stackptr[0] != DEADBEEF)
212 panicf("Stkov %s", thread_name[current]); 212 panicf("Stkov %s", thread_name[current]);
213#endif 213#endif