diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-15 19:31:11 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-21 05:12:48 -0400 |
commit | 2209bcb1310ffa9ee1af12573f1413581c712b15 (patch) | |
tree | eba9f53adc3bb83dc499f15873d4e49886662122 /arch/mips/math-emu/sp_fint.c | |
parent | 23708818210cec367083ce9c09c6e71a5767d7e3 (diff) |
MIPS: math-emu: Get rid of typedefs.
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/math-emu/sp_fint.c b/arch/mips/math-emu/sp_fint.c index 9694d6c016cb..7ba2b40348c4 100644 --- a/arch/mips/math-emu/sp_fint.c +++ b/arch/mips/math-emu/sp_fint.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | #include "ieee754sp.h" | 27 | #include "ieee754sp.h" |
28 | 28 | ||
29 | ieee754sp ieee754sp_fint(int x) | 29 | union ieee754sp ieee754sp_fint(int x) |
30 | { | 30 | { |
31 | unsigned xm; | 31 | unsigned xm; |
32 | int xe; | 32 | int xe; |
@@ -70,7 +70,7 @@ ieee754sp ieee754sp_fint(int x) | |||
70 | } | 70 | } |
71 | 71 | ||
72 | 72 | ||
73 | ieee754sp ieee754sp_funs(unsigned int u) | 73 | union ieee754sp ieee754sp_funs(unsigned int u) |
74 | { | 74 | { |
75 | if ((int) u < 0) | 75 | if ((int) u < 0) |
76 | return ieee754sp_add(ieee754sp_1e31(), | 76 | return ieee754sp_add(ieee754sp_1e31(), |