aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/exti.c
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-01-31 00:19:36 -0500
committerMarti Bolivar <mbolivar@leaflabs.com>2011-01-31 00:19:36 -0500
commit2e7fa60e435469d102522b0bc490ef4f21bbb989 (patch)
tree9ec3f1f03e3d98e9649fa90f5de1992aa51242dd /libmaple/exti.c
parentf1b64e707d8aa7548954b110368a7eb46b827794 (diff)
downloadlibrambutan-2e7fa60e435469d102522b0bc490ef4f21bbb989.tar.gz
librambutan-2e7fa60e435469d102522b0bc490ef4f21bbb989.zip
nvic bugfix; removed unnecessary volatile usage
Diffstat (limited to 'libmaple/exti.c')
-rw-r--r--libmaple/exti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmaple/exti.c b/libmaple/exti.c
index e806df9..150dd05 100644
--- a/libmaple/exti.c
+++ b/libmaple/exti.c
@@ -35,7 +35,7 @@ typedef struct ExtIChannel {
uint32 irq_line;
} ExtIChannel;
-volatile static ExtIChannel exti_channels[] = {
+static ExtIChannel exti_channels[] = {
{ .handler = NULL, .irq_line = NVIC_EXTI0 }, // EXTI0
{ .handler = NULL, .irq_line = NVIC_EXTI1 }, // EXTI1
{ .handler = NULL, .irq_line = NVIC_EXTI2 }, // EXTI2