summaryrefslogtreecommitdiff
path: root/arch/mips/math-emu/sp_fint.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2014-04-25 03:19:57 +0200
committerRalf Baechle <ralf@linux-mips.org>2014-05-23 15:11:14 +0200
commit90efba36ed50933c6df92805bd7e5742e9cc0f46 (patch)
treeedcf824726a76c68e7606954ea16fbcbc91a4f27 /arch/mips/math-emu/sp_fint.c
parent593d33fe334761853890f2f84ed41e7c24051de2 (diff)
MIPS: math-emu: Get rid of the useless parts of exception handling.
All it really did was throw a printk for no obvious reason. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/sp_fint.c')
-rw-r--r--arch/mips/math-emu/sp_fint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/sp_fint.c b/arch/mips/math-emu/sp_fint.c
index 0d01200793d1..8e8687bf955d 100644
--- a/arch/mips/math-emu/sp_fint.c
+++ b/arch/mips/math-emu/sp_fint.c
@@ -66,5 +66,5 @@ union ieee754sp ieee754sp_fint(int x)
xe--;
}
}
- SPNORMRET1(xs, xe, xm, "fint", x);
+ return ieee754sp_format(xs, xe, xm);
}