Skip to content

Commit

Permalink
Fix for Issue #1580
Browse files Browse the repository at this point in the history
  • Loading branch information
Masmiseim36 committed Nov 4, 2022
1 parent dd4ab4f commit 242a6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMSIS/Core_A/Source/irq_ctrl_gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ __WEAK int32_t IRQ_SetHandler (IRQn_ID_t irqn, IRQHandler_t handler) {
__WEAK void IRQ_Handler (void) {
IRQn_Type irqn = GIC_AcknowledgePending ();
if (irqn < (IRQn_Type)IRQ_GIC_LINE_COUNT) {
IrqTable[irqn]();
IRQTable[irqn]();
}
GIC_EndInterrupt (irqn);
}
Expand Down

0 comments on commit 242a6cb

Please sign in to comment.