diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-04-01 15:17:45 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-04-18 22:14:18 -0400 |
commit | 93373ed4d87fb02554ce020d929388ac16913664 (patch) | |
tree | 01925421619219d00c39744b0a4cc79b8f7f719b /arch/mips/dec | |
parent | c9e321e095384f25f2b7ffef456794cfa876dafc (diff) |
[MIPS] Rewrite spurious_interrupt from assembler to C.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/dec')
-rw-r--r-- | arch/mips/dec/int-handler.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/dec/int-handler.S b/arch/mips/dec/int-handler.S index 41fa372007bf..5bafd585ac3e 100644 --- a/arch/mips/dec/int-handler.S +++ b/arch/mips/dec/int-handler.S | |||
@@ -282,7 +282,9 @@ fpu: | |||
282 | #endif | 282 | #endif |
283 | 283 | ||
284 | spurious: | 284 | spurious: |
285 | j spurious_interrupt | 285 | jal spurious_interrupt |
286 | nop | ||
287 | j ret_from_irq | ||
286 | nop | 288 | nop |
287 | END(decstation_handle_int) | 289 | END(decstation_handle_int) |
288 | 290 | ||