aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Platform/UC3/InterruptManagement.c
diff options
context:
space:
mode:
Diffstat (limited to 'LUFA/Platform/UC3/InterruptManagement.c')
-rw-r--r--LUFA/Platform/UC3/InterruptManagement.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Platform/UC3/InterruptManagement.c b/LUFA/Platform/UC3/InterruptManagement.c
index b1dda745c..2e260b38b 100644
--- a/LUFA/Platform/UC3/InterruptManagement.c
+++ b/LUFA/Platform/UC3/InterruptManagement.c
@@ -36,11 +36,11 @@ InterruptHandlerPtr_t InterruptHandlers[AVR32_INTC_NUM_INT_GRPS];
/** ISR for unhandled interrupt groups */
ISR(Unhandled_Interrupt)
{
- while (true);
+ for (;;);
}
-/** Retrieves the associated interrupt handler for the interrupt currently being fired. This is
- * called directly from the exception handler routine before dispatching to the ISR.
+/** Retrieves the associated interrupt handler for the interrupt group currently being fired. This
+ * is called directly from the exception handler routine before dispatching to the ISR.
*/
InterruptHandlerPtr_t INTC_GetInterruptHandler(const uint_reg_t InterruptLevel)
{