diff options
Diffstat (limited to 'arch/powerpc/math-emu/fctiw.c')
-rw-r--r-- | arch/powerpc/math-emu/fctiw.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/math-emu/fctiw.c b/arch/powerpc/math-emu/fctiw.c index fcd7a95e021d..f694440ddc00 100644 --- a/arch/powerpc/math-emu/fctiw.c +++ b/arch/powerpc/math-emu/fctiw.c | |||
@@ -2,16 +2,18 @@ | |||
2 | #include <linux/errno.h> | 2 | #include <linux/errno.h> |
3 | #include <asm/uaccess.h> | 3 | #include <asm/uaccess.h> |
4 | 4 | ||
5 | #include "soft-fp.h" | 5 | #include <asm/sfp-machine.h> |
6 | #include "double.h" | 6 | #include <math-emu/soft-fp.h> |
7 | #include <math-emu/double.h> | ||
7 | 8 | ||
8 | int | 9 | int |
9 | fctiw(u32 *frD, void *frB) | 10 | fctiw(u32 *frD, void *frB) |
10 | { | 11 | { |
11 | FP_DECL_D(B); | 12 | FP_DECL_D(B); |
13 | FP_DECL_EX; | ||
12 | unsigned int r; | 14 | unsigned int r; |
13 | 15 | ||
14 | __FP_UNPACK_D(B, frB); | 16 | FP_UNPACK_DP(B, frB); |
15 | FP_TO_INT_D(r, B, 32, 1); | 17 | FP_TO_INT_D(r, B, 32, 1); |
16 | frD[1] = r; | 18 | frD[1] = r; |
17 | 19 | ||