aboutsummaryrefslogtreecommitdiffstats
path: root/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-09-05 08:56:49 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-09-05 08:56:49 +0000
commit737c82e787472f325fe22f7cbfe82ef8be8a6a66 (patch)
treed2f161544a6ef23aa21e2c35e21ec75b993f634c /ports
parentb5dbedde8a426ca23dac376b47408d6436740ad4 (diff)
downloadChibiOS-737c82e787472f325fe22f7cbfe82ef8be8a6a66.tar.gz
ChibiOS-737c82e787472f325fe22f7cbfe82ef8be8a6a66.tar.bz2
ChibiOS-737c82e787472f325fe22f7cbfe82ef8be8a6a66.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@424 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports')
-rw-r--r--ports/ARM7/chcore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/ARM7/chcore.h b/ports/ARM7/chcore.h
index 557526863..daf8df77c 100644
--- a/ports/ARM7/chcore.h
+++ b/ports/ARM7/chcore.h
@@ -102,7 +102,7 @@ extern "C" {
#define chSysUnlock() asm volatile ("msr CPSR_c, %0" : : "r" (ps))
#define chSysEnable() asm volatile ("msr CPSR_c, #0x1F")
#else
-#define chSysLock() asm volatile ("msr CPSR_c, #0x9F");
+#define chSysLock() asm volatile ("msr CPSR_c, #0x9F")
#define chSysUnlock() asm volatile ("msr CPSR_c, #0x1F")
#define chSysEnable() asm volatile ("msr CPSR_c, #0x1F")
#endif /* !REENTRANT_LOCKS */