summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-13 18:08:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-05-13 18:08:11 +0000
commite9e755212fbc43b2892565c85e3f8026a7d72700 (patch)
treead90d56e67bf442451c4eb532eef2eeefb7873f2 /c/src/lib/libbsp/mips
parent2010-05-13 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-e9e755212fbc43b2892565c85e3f8026a7d72700.tar.bz2
2010-05-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/exception.S: Minor changes to make more similar to the shared version.
Diffstat (limited to 'c/src/lib/libbsp/mips')
-rw-r--r--c/src/lib/libbsp/mips/hurricane/ChangeLog5
-rw-r--r--c/src/lib/libbsp/mips/hurricane/startup/exception.S8
2 files changed, 9 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/mips/hurricane/ChangeLog b/c/src/lib/libbsp/mips/hurricane/ChangeLog
index 9d0ae22bdc..12f3db3930 100644
--- a/c/src/lib/libbsp/mips/hurricane/ChangeLog
+++ b/c/src/lib/libbsp/mips/hurricane/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-13 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * startup/exception.S: Minor changes to make more similar to the shared
+ version.
+
2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/linkcmds: Revert previous change. Remove .reginfo from .bss
diff --git a/c/src/lib/libbsp/mips/hurricane/startup/exception.S b/c/src/lib/libbsp/mips/hurricane/startup/exception.S
index 1dca7c5510..157150324a 100644
--- a/c/src/lib/libbsp/mips/hurricane/startup/exception.S
+++ b/c/src/lib/libbsp/mips/hurricane/startup/exception.S
@@ -135,7 +135,7 @@ void _ISR_Handler()
*
*/
#endif
-FRAME(hurricane_ISR_Handler,sp,0,ra)
+FRAME(bsp_ISR_Handler,sp,0,ra)
.set noreorder
mfc0 k0,C0_CAUSE /* Determine if an interrupt generated this exception */
@@ -143,7 +143,7 @@ FRAME(hurricane_ISR_Handler,sp,0,ra)
and k1,k0,CAUSE_EXCMASK
beq k1,zero,_chk_int /* If so, branch to service here */
nop
-1: la k0,_int_esr_link /* Otherwise, jump to next exception handler in PMON exception chain */
+ la k0,_int_esr_link /* Otherwise, jump to next exception handler in PMON exception chain */
lw k0,(k0)
lw k0,4(k0)
j k0
@@ -438,7 +438,7 @@ USC_isr2:
.set reorder
-ENDFRAME(hurricane_ISR_Handler)
+ENDFRAME(bsp_ISR_Handler)
FRAME(_BRK_Handler,sp,0,ra)
@@ -675,7 +675,7 @@ k1tmp: .word 0 /* Temporary strage for K1 during interrupt service */
.global _int_esr_link
_int_esr_link:
.word 0
- .word hurricane_ISR_Handler
+ .word bsp_ISR_Handler
/* Break exception service routine link */
.global _brk_esr_link