aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-21 20:06:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-21 20:06:52 +0000
commit28270e815e81ebd5e44d6b91b7041d63833974cc (patch)
treee393f01a098b24bc690582177f786f346d1f11c9 /os/kernel
parenta8a2a5eaee75923546b46eabf705b43a5b5052ea (diff)
downloadChibiOS-28270e815e81ebd5e44d6b91b7041d63833974cc.tar.gz
ChibiOS-28270e815e81ebd5e44d6b91b7041d63833974cc.tar.bz2
ChibiOS-28270e815e81ebd5e44d6b91b7041d63833974cc.zip
Updated IAR projects.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3647 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/include/chsys.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/os/kernel/include/chsys.h b/os/kernel/include/chsys.h
index b69736a1d..89b64e3f9 100644
--- a/os/kernel/include/chsys.h
+++ b/os/kernel/include/chsys.h
@@ -193,10 +193,9 @@
*
* @special
*/
-#define CH_IRQ_PROLOGUE() { \
+#define CH_IRQ_PROLOGUE() \
PORT_IRQ_PROLOGUE(); \
- dbg_check_enter_isr(); \
-}
+ dbg_check_enter_isr()
/**
* @brief IRQ handler exit code.
@@ -206,10 +205,9 @@
*
* @special
*/
-#define CH_IRQ_EPILOGUE() { \
+#define CH_IRQ_EPILOGUE() \
dbg_check_leave_isr(); \
- PORT_IRQ_EPILOGUE(); \
-}
+ PORT_IRQ_EPILOGUE()
/**
* @brief Standard normal IRQ handler declaration.