aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisiora <none@example.com>2017-08-14 09:08:03 +0000
committerisiora <none@example.com>2017-08-14 09:08:03 +0000
commitf4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9 (patch)
tree53ad6d604d3012736e73225af4d96a563bdd5043
parentc06ff694bdfa0e9e4dd26143c351eaf348cbfd0e (diff)
downloadChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.tar.gz
ChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.tar.bz2
ChibiOS-f4d5d1c0ad311a2f04fbb8149cd403459b5d9fd9.zip
The IRQ handlers are normal functions: deleted interrupt attribute to them.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10423 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/common/ports/ARMCAx-TZ/chcore.h4
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.