sh: remove unused do_fpu_error
authorBobby Bingham <koorogi@koorogi.info>
Thu, 3 Apr 2014 21:46:40 +0000 (14:46 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 3 Apr 2014 23:20:52 +0000 (16:20 -0700)
This does not appear to have been used since commit 74d99a5e2622 ("sh:
SH-2A FPU support") in 2007.

Signed-off-by: Bobby Bingham <koorogi@koorogi.info>
Cc: Paul Mundt <paul.mundt@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/sh/math-emu/math.c

index b876780c1e1cbd1fa47a5b200847af03e9bdd074..04aa55fa8c7591546827e5012c9f7b8309683011 100644 (file)
@@ -574,24 +574,6 @@ static int ieee_fpe_handler(struct pt_regs *regs)
        return 0;
 }
 
-asmlinkage void do_fpu_error(unsigned long r4, unsigned long r5,
-                            unsigned long r6, unsigned long r7,
-                            struct pt_regs regs)
-{
-       struct task_struct *tsk = current;
-       siginfo_t info;
-
-       if (ieee_fpe_handler (&regs))
-               return;
-
-       regs.pc += 2;
-       info.si_signo = SIGFPE;
-       info.si_errno = 0;
-       info.si_code = FPE_FLTINV;
-       info.si_addr = (void __user *)regs.pc;
-       force_sig_info(SIGFPE, &info, tsk);
-}
-
 /**
  * fpu_init - Initialize FPU registers
  * @fpu: Pointer to software emulated FPU registers.
This page took 0.027351 seconds and 5 git commands to generate.