summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-17 17:16:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-17 17:16:14 +0000
commit18e45af1c8528a7d89e5151dd554c6f57c5fe823 (patch)
tree35d6d082d72fe9ad7991c3b447d597dd9ec5d33a
parent2002-07-17 Jay Monkman <jtm@smoothsmoothie.com> (diff)
downloadrtems-18e45af1c8528a7d89e5151dd554c6f57c5fe823.tar.bz2
2002-07-17 Jay Monkman <jtm@smoothsmoothie.com>
* irq/bsp_irq_asm.S: Disable code to touch PIC.
-rw-r--r--c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog4
-rw-r--r--c/src/lib/libbsp/arm/arm_bare_bsp/irq/bsp_irq_asm.S7
2 files changed, 9 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog b/c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog
index e833e33662..2d3244c046 100644
--- a/c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog
+++ b/c/src/lib/libbsp/arm/arm_bare_bsp/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-17 Jay Monkman <jtm@smoothsmoothie.com>
+
+ * irq/bsp_irq_asm.S: Disable code to touch PIC.
+
2002-06-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Remove preinstallation of libbsp.a,
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