diff options
-rw-r--r-- | os/common/ports/ARMCAx-TZ/chcore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/ports/ARMCAx-TZ/chcore.h b/os/common/ports/ARMCAx-TZ/chcore.h index c5d0f61d7..ca23c296f 100644 --- a/os/common/ports/ARMCAx-TZ/chcore.h +++ b/os/common/ports/ARMCAx-TZ/chcore.h @@ -298,7 +298,7 @@ struct port_context { * port implementation.
*/
#define PORT_IRQ_HANDLER(id) \
- __attribute__((interrupt("FIQ"))) bool id(void)
+ bool id(void)
/**
* @brief Fast IRQ handler function declaration.
@@ -306,7 +306,7 @@ struct port_context { * port implementation.
*/
#define PORT_FAST_IRQ_HANDLER(id) \
- __attribute__((interrupt("FIQ"))) bool id(void)
+ bool id(void)
/**
* @brief Performs a context switch between two threads.
|