aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/math-emu/sp_tint.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/math-emu/sp_tint.c')
-rw-r--r--arch/mips/math-emu/sp_tint.c6
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
30int ieee754sp_tint(ieee754sp x) 30int 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
116unsigned int ieee754sp_tuns(ieee754sp x) 116unsigned 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))