diff options
Diffstat (limited to 'src/include/sys.h')
-rw-r--r-- | src/include/sys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/sys.h b/src/include/sys.h index 25cdbed6a..ae6a8dd2a 100644 --- a/src/include/sys.h +++ b/src/include/sys.h @@ -148,7 +148,7 @@ * @note Usually IRQ handlers functions are also declared naked.
* @note On some architectures this macro can be empty.
*/
-#define chSysIRQEnterI() SYS_IRQ_PROLOGUE()
+#define CH_IRQ_PROLOGUE() SYS_IRQ_PROLOGUE()
/**
* IRQ handler exit code.
@@ -156,7 +156,7 @@ * @note This macro usually performs the final reschedulation by using
* \p chSchRescRequiredI() and \p chSchDoRescheduleI().
*/
-#define chSysIRQExitI() SYS_IRQ_EPILOGUE()
+#define CH_IRQ_EPILOGUE() SYS_IRQ_EPILOGUE()
/**
* Standard modifier for IRQ handler functions. |