aboutsummaryrefslogtreecommitdiffstats
path: root/ports/AVR
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-10 11:51:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-10 11:51:09 +0000
commit0fc2adba2ad0f66c86c3d7c79a79b666b9614ca2 (patch)
treeb35c300c7be85abc2142855377f2b55f045370dd /ports/AVR
parent791d101af5ce38335694b882149449c83f650fda (diff)
downloadChibiOS-0fc2adba2ad0f66c86c3d7c79a79b666b9614ca2.tar.gz
ChibiOS-0fc2adba2ad0f66c86c3d7c79a79b666b9614ca2.tar.bz2
ChibiOS-0fc2adba2ad0f66c86c3d7c79a79b666b9614ca2.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@603 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/AVR')
-rw-r--r--ports/AVR/chcore.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/AVR/chcore.h b/ports/AVR/chcore.h
index 90755cb4e..b748ce1a9 100644
--- a/ports/AVR/chcore.h
+++ b/ports/AVR/chcore.h
@@ -199,14 +199,14 @@ asm ("" : : : "r18", "r19", "r20", "r21", "r22", "r23", "r24", \
#define sys_enable() asm volatile ("sei")
/**
- * This port function is implemented as inlined code for performance reasons.
+ * This function is empty in this port.
*/
-#define sys_disable_from_isr() sys_disable()
+#define sys_disable_from_isr()
/**
- * This port function is implemented as inlined code for performance reasons.
+ * This function is empty in this port.
*/
-#define sys_enable_from_isr() sys_enable()
+#define sys_enable_from_isr()
#if ENABLE_WFI_IDLE != 0
/**