]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/powerpc/math-emu/fctiwz.c
Merge branch 'i2c-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6
[linux-2.6-omap-h63xx.git] / arch / powerpc / math-emu / fctiwz.c
index 7717eb6fcfb68d05025df1da0b0532f5ccf6c781..71e782fd4fe35b13a2d1e1b77d6f8b7f32855738 100644 (file)
@@ -2,13 +2,15 @@
 #include <linux/errno.h>
 #include <asm/uaccess.h>
 
-#include "soft-fp.h"
-#include "double.h"
+#include <asm/sfp-machine.h>
+#include <math-emu/soft-fp.h>
+#include <math-emu/double.h>
 
 int
 fctiwz(u32 *frD, void *frB)
 {
        FP_DECL_D(B);
+       FP_DECL_EX;
        u32 fpscr;
        unsigned int r;
 
@@ -16,14 +18,14 @@ fctiwz(u32 *frD, void *frB)
        __FPU_FPSCR &= ~(3);
        __FPU_FPSCR |= FP_RND_ZERO;
 
-       __FP_UNPACK_D(B, frB);
+       FP_UNPACK_DP(B, frB);
        FP_TO_INT_D(r, B, 32, 1);
        frD[1] = r;
 
        __FPU_FPSCR = fpscr;
 
 #ifdef DEBUG
-       printk("%s: D %p, B %p: ", __FUNCTION__, frD, frB);
+       printk("%s: D %p, B %p: ", __func__, frD, frB);
        dump_double(frD);
        printk("\n");
 #endif