diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-29 08:19:23 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-08-29 08:19:23 +0000 |
commit | 95b19d5c196b9b0402fa9703a75ad97189bf0cc1 (patch) | |
tree | 229126926c30560762b1454fc85ffc1086c3ee38 /os/ports | |
parent | 1421a2fd6ca461a96c4be653ea7b925834963433 (diff) | |
download | ChibiOS-95b19d5c196b9b0402fa9703a75ad97189bf0cc1.tar.gz ChibiOS-95b19d5c196b9b0402fa9703a75ad97189bf0cc1.tar.bz2 ChibiOS-95b19d5c196b9b0402fa9703a75ad97189bf0cc1.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1123 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r-- | os/ports/GCC/ARMCM3/chcore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/ports/GCC/ARMCM3/chcore.h b/os/ports/GCC/ARMCM3/chcore.h index 7e68d1aae..4a6ee2695 100644 --- a/os/ports/GCC/ARMCM3/chcore.h +++ b/os/ports/GCC/ARMCM3/chcore.h @@ -306,7 +306,7 @@ struct context { if (sp - sizeof(struct intctx) - sizeof(Thread) < (char *)_otp) \
asm volatile ("movs r0, #0 \n\t" \
"b chDbgPanic"); \
- asm volatile ("svc #0" : : "r" (_otp), "r" (_ntp) : "memory"); \
+ asm volatile ("svc #0" : : "r" (_otp), "r" (_ntp) : "memory"); \
}
#else /* !CH_DBG_ENABLE_STACK_CHECK */
#define port_switch(otp, ntp) { \
|