diff options
Diffstat (limited to 'arch/mips/kernel/r6000_fpu.S')
-rw-r--r-- | arch/mips/kernel/r6000_fpu.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/kernel/r6000_fpu.S b/arch/mips/kernel/r6000_fpu.S index 424bc8138..851b4dc48 100644 --- a/arch/mips/kernel/r6000_fpu.S +++ b/arch/mips/kernel/r6000_fpu.S @@ -10,7 +10,7 @@ * Multi-arch abstraction and asm macros for easier reading: * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * - * $Id: r6000_fpu.S,v 1.4 1999/04/11 18:37:55 harald Exp $ + * $Id: r6000_fpu.S,v 1.5 1999/05/01 22:40:37 ralf Exp $ */ #include <asm/asm.h> #include <asm/fpregdef.h> @@ -21,7 +21,7 @@ .set noreorder .set mips2 /* Save floating point context */ - LEAF(r6000_save_fp_context) + LEAF(save_fp_context) mfc0 t0,CP0_STATUS sll t0,t0,2 bgez t0,1f @@ -49,7 +49,7 @@ sw t0,SC_FPC_CSR(a0) 1: jr ra nop - END(r6000_save_fp_context) + END(save_fp_context) /* Restore FPU state: * - fp gp registers @@ -59,7 +59,7 @@ * frame on the current content of c0_status, not on the content of the * stack frame which might have been changed by the user. */ - LEAF(r6000_restore_fp_context) + LEAF(restore_fp_context) mfc0 t0,CP0_STATUS sll t0,t0,2 @@ -86,4 +86,4 @@ ctc1 t0,fcr31 1: jr ra nop - END(r6000_restore_fp_context) + END(restore_fp_context) |