aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/TIVA
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2015-04-14 22:53:48 +0200
committermarcoveeneman <marco-veeneman@hotmail.com>2015-04-14 22:53:48 +0200
commit2c66f5477153fcbf503c8a6aca6d99e4e5da3e9d (patch)
treed081527ddef296d8ca638bfaaa1c4ba02f184880 /os/hal/ports/TIVA
parentf4e68ad23a5b61a0a87e52afd1f71ae0d593229d (diff)
downloadChibiOS-Contrib-2c66f5477153fcbf503c8a6aca6d99e4e5da3e9d.tar.gz
ChibiOS-Contrib-2c66f5477153fcbf503c8a6aca6d99e4e5da3e9d.tar.bz2
ChibiOS-Contrib-2c66f5477153fcbf503c8a6aca6d99e4e5da3e9d.zip
Tiva. EXT. Fixed typo in ext_serve_pin_interrupt macro.
Diffstat (limited to 'os/hal/ports/TIVA')
-rw-r--r--os/hal/ports/TIVA/LLD/ext_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/TIVA/LLD/ext_lld.c b/os/hal/ports/TIVA/LLD/ext_lld.c
index c4c7163..20a001a 100644
--- a/os/hal/ports/TIVA/LLD/ext_lld.c
+++ b/os/hal/ports/TIVA/LLD/ext_lld.c
@@ -70,7 +70,7 @@
* @brief Generic interrupt serving code for single pin per interrupt
* handler.
*/
-#define ext_server_pin_interrupt(gpiop, start, pin) \
+#define ext_serve_pin_interrupt(gpiop, start, pin) \
do { \
gpiop->ICR = (1 << pin); \
EXTD1.config->channels[start].cb(&EXTD1, start); \