summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/system-as3525.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/system-as3525.c')
-rw-r--r--firmware/target/arm/as3525/system-as3525.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c
index d8059715d0..8f64597f4f 100644
--- a/firmware/target/arm/as3525/system-as3525.c
+++ b/firmware/target/arm/as3525/system-as3525.c
@@ -103,14 +103,8 @@ static void UIRQ(void)
103 masked ? "" : "un", irq_no, irqname[irq_no], status); 103 masked ? "" : "un", irq_no, irqname[irq_no], status);
104} 104}
105 105
106struct vec_int_src
107{
108 int source;
109 void (*isr) (void);
110};
111
112/* Vectored interrupts (16 available) */ 106/* Vectored interrupts (16 available) */
113struct vec_int_src vec_int_srcs[] = 107static const struct { int source; void (*isr) (void); } vec_int_srcs[] =
114{ 108{
115 /* Highest priority at the top of the list */ 109 /* Highest priority at the top of the list */
116 { INT_SRC_DMAC, INT_DMAC }, 110 { INT_SRC_DMAC, INT_DMAC },