diff options
Diffstat (limited to 'arch/mips/math-emu/sp_tint.c')
-rw-r--r-- | arch/mips/math-emu/sp_tint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/math-emu/sp_tint.c b/arch/mips/math-emu/sp_tint.c index 0fe9acc7716e..37cb096ee931 100644 --- a/arch/mips/math-emu/sp_tint.c +++ b/arch/mips/math-emu/sp_tint.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <linux/kernel.h> | 27 | #include <linux/kernel.h> |
28 | #include "ieee754sp.h" | 28 | #include "ieee754sp.h" |
29 | 29 | ||
30 | int ieee754sp_tint(ieee754sp x) | 30 | int ieee754sp_tint(union ieee754sp x) |
31 | { | 31 | { |
32 | COMPXSP; | 32 | COMPXSP; |
33 | 33 | ||
@@ -113,9 +113,9 @@ int ieee754sp_tint(ieee754sp x) | |||
113 | } | 113 | } |
114 | 114 | ||
115 | 115 | ||
116 | unsigned int ieee754sp_tuns(ieee754sp x) | 116 | unsigned int ieee754sp_tuns(union ieee754sp x) |
117 | { | 117 | { |
118 | ieee754sp hb = ieee754sp_1e31(); | 118 | union ieee754sp hb = ieee754sp_1e31(); |
119 | 119 | ||
120 | /* what if x < 0 ?? */ | 120 | /* what if x < 0 ?? */ |
121 | if (ieee754sp_lt(x, hb)) | 121 | if (ieee754sp_lt(x, hb)) |