diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2014-04-03 17:46:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-03 19:20:52 -0400 |
commit | 7caf62de25554da3af00c92c11afa95dcc3592c4 (patch) | |
tree | 29191c3fe35557b5fa3c64b393958261b7985768 /arch/sh | |
parent | abafe5d9b04648a2f699202e9ae2d15ffe44c3a3 (diff) |
sh: remove unused do_fpu_error
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>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/math-emu/math.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/sh/math-emu/math.c b/arch/sh/math-emu/math.c index b876780c1e1c..04aa55fa8c75 100644 --- a/arch/sh/math-emu/math.c +++ b/arch/sh/math-emu/math.c | |||
@@ -574,24 +574,6 @@ static int ieee_fpe_handler(struct pt_regs *regs) | |||
574 | return 0; | 574 | return 0; |
575 | } | 575 | } |
576 | 576 | ||
577 | asmlinkage void do_fpu_error(unsigned long r4, unsigned long r5, | ||
578 | unsigned long r6, unsigned long r7, | ||
579 | struct pt_regs regs) | ||
580 | { | ||
581 | struct task_struct *tsk = current; | ||
582 | siginfo_t info; | ||
583 | |||
584 | if (ieee_fpe_handler (®s)) | ||
585 | return; | ||
586 | |||
587 | regs.pc += 2; | ||
588 | info.si_signo = SIGFPE; | ||
589 | info.si_errno = 0; | ||
590 | info.si_code = FPE_FLTINV; | ||
591 | info.si_addr = (void __user *)regs.pc; | ||
592 | force_sig_info(SIGFPE, &info, tsk); | ||
593 | } | ||
594 | |||
595 | /** | 577 | /** |
596 | * fpu_init - Initialize FPU registers | 578 | * fpu_init - Initialize FPU registers |
597 | * @fpu: Pointer to software emulated FPU registers. | 579 | * @fpu: Pointer to software emulated FPU registers. |