summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/fpe.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-07-08 02:59:00 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-07-08 02:59:00 +0000
commit1fcb7623bc138d780101d7a70cfe29b11f7c67ef (patch)
treee1ec9bb6aa19db16a405fb4393e2a90c38b4c75d /arch/mips/kernel/fpe.c
parent458fe58677afb17219d864e100131728038b4f1b (diff)
Merge with Linux 2.4.0-test3-pre5. 64-bit kernel are still not
-Werror clean.
Diffstat (limited to 'arch/mips/kernel/fpe.c')
-rw-r--r--arch/mips/kernel/fpe.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/mips/kernel/fpe.c b/arch/mips/kernel/fpe.c
index 66703471c..2d82d8c31 100644
--- a/arch/mips/kernel/fpe.c
+++ b/arch/mips/kernel/fpe.c
@@ -4,9 +4,7 @@
* in the kernel space a lot easier. So far this handler in the released
* kernel source is just a dummy.
*
- * Copyright (C) 1997 Ralf Baechle
- *
- * $Id: fpe.c,v 1.3 1998/04/05 11:23:50 ralf Exp $
+ * Copyright (C) 1997, 2000 Ralf Baechle
*/
#include <linux/kernel.h>
#include <linux/module.h>
@@ -24,7 +22,6 @@ MODULE_SUPPORTED_DEVICE("MIPS FPU");
static void do_fpe(struct pt_regs *regs, unsigned int fcr31)
{
- lock_kernel();
#ifdef CONF_DEBUG_EXCEPTIONS
show_regs(regs);
#endif
@@ -34,7 +31,6 @@ static void do_fpe(struct pt_regs *regs, unsigned int fcr31)
goto out;
force_sig(SIGFPE, current);
out:
- unlock_kernel();
}
/*