]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/x86/math-emu/fpu_etc.c
Merge branch 'for-rmk' of git://git.android.com/kernel into devel
[linux-2.6-omap-h63xx.git] / arch / x86 / math-emu / fpu_etc.c
index e73631e0cde9390b20c8a859d5f8df0a7fab406a..233e5af566f5123d53e0f8794c75c6af3f23fb89 100644 (file)
@@ -16,7 +16,7 @@
 #include "status_w.h"
 #include "reg_constant.h"
 
-static void fchs(FPU_REG * st0_ptr, u_char st0tag)
+static void fchs(FPU_REG *st0_ptr, u_char st0tag)
 {
        if (st0tag ^ TAG_Empty) {
                signbyte(st0_ptr) ^= SIGN_NEG;
@@ -25,7 +25,7 @@ static void fchs(FPU_REG * st0_ptr, u_char st0tag)
                FPU_stack_underflow();
 }
 
-static void fabs(FPU_REG * st0_ptr, u_char st0tag)
+static void fabs(FPU_REG *st0_ptr, u_char st0tag)
 {
        if (st0tag ^ TAG_Empty) {
                setpositive(st0_ptr);
@@ -34,7 +34,7 @@ static void fabs(FPU_REG * st0_ptr, u_char st0tag)
                FPU_stack_underflow();
 }
 
-static void ftst_(FPU_REG * st0_ptr, u_char st0tag)
+static void ftst_(FPU_REG *st0_ptr, u_char st0tag)
 {
        switch (st0tag) {
        case TAG_Zero:
@@ -85,7 +85,7 @@ static void ftst_(FPU_REG * st0_ptr, u_char st0tag)
        }
 }
 
-static void fxam(FPU_REG * st0_ptr, u_char st0tag)
+static void fxam(FPU_REG *st0_ptr, u_char st0tag)
 {
        int c = 0;
        switch (st0tag) {