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.S7
1 files changed, 5 insertions, 2 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 5e0a36d705..1744072375 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
@@ -10,6 +10,7 @@
* found in found in the file LICENSE in this distribution or at
* http://www.OARcorp.com/rtems/license.html.
*
+ * $Id$
*/
#define __asm__
@@ -27,8 +28,9 @@ ExecuteITHandler :
* Here is the code to execute the appropriate INT handler
*/
- b ReturnFromHandler /* return to ISR handler */
-
+ mov pc, r0
+
+#if 0
/*
* Function to acknowledge the IT controller
*/
@@ -42,3 +44,4 @@ AckControler:
b ReturnFromAck /* return to ISR handler */
+#endif