summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S')
-rw-r--r--c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S26
1 files changed, 13 insertions, 13 deletions
diff --git a/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S b/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S
index 7ff7abb785..311578d50e 100644
--- a/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S
+++ b/c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S
@@ -15,33 +15,33 @@
#define __asm__
#include <registers.h>
-
-/*
- * Function to obtain, execute an IT handler and acknowledge the IT
+
+/*
+ * Function to obtain, execute an IT handler and acknowledge the IT
*/
.globl ExecuteITHandler
-
-ExecuteITHandler :
+
+ExecuteITHandler :
/*
- * Here is the code to execute the appropriate INT handler
+ * Here is the code to execute the appropriate INT handler
*/
-
+
mov pc, r0
-#if 0
-/*
- * Function to acknowledge the IT controller
+#if 0
+/*
+ * Function to acknowledge the IT controller
*/
.globl AckControler
-
-AckControler:
+
+AckControler:
/*
* Here is the code to acknowledge the PIC
*/
-
+
b ReturnFromAck /* return to ISR handler */
#endif