aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/math-emu/fpu_etc.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-01-30 07:30:12 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:30:12 -0500
commite8d591dc710158bae6b53c8b7a0172351025c6e2 (patch)
tree37772d60594150ec668a4bdf4c90baa2a6a922ba /arch/x86/math-emu/fpu_etc.c
parent3d0d14f983b55a570b976976284df4c434af3223 (diff)
x86: lindent arch/i386/math-emu, cleanup
manually clean up some of the damage that lindent caused. (this is a separate commit so that in the unlikely case of a typo we can bisect it down to the manual edits.) Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/math-emu/fpu_etc.c')
-rw-r--r--arch/x86/math-emu/fpu_etc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/math-emu/fpu_etc.c b/arch/x86/math-emu/fpu_etc.c
index e73631e0cde9..233e5af566f5 100644
--- a/arch/x86/math-emu/fpu_etc.c
+++ b/arch/x86/math-emu/fpu_etc.c
@@ -16,7 +16,7 @@
16#include "status_w.h" 16#include "status_w.h"
17#include "reg_constant.h" 17#include "reg_constant.h"
18 18
19static void fchs(FPU_REG * st0_ptr, u_char st0tag) 19static void fchs(FPU_REG *st0_ptr, u_char st0tag)
20{ 20{
21 if (st0tag ^ TAG_Empty) { 21 if (st0tag ^ TAG_Empty) {
22 signbyte(st0_ptr) ^= SIGN_NEG; 22 signbyte(st0_ptr) ^= SIGN_NEG;
@@ -25,7 +25,7 @@ static void fchs(FPU_REG * st0_ptr, u_char st0tag)
25 FPU_stack_underflow(); 25 FPU_stack_underflow();
26} 26}
27 27
28static void fabs(FPU_REG * st0_ptr, u_char st0tag) 28static void fabs(FPU_REG *st0_ptr, u_char st0tag)
29{ 29{
30 if (st0tag ^ TAG_Empty) { 30 if (st0tag ^ TAG_Empty) {
31 setpositive(st0_ptr); 31 setpositive(st0_ptr);
@@ -34,7 +34,7 @@ static void fabs(FPU_REG * st0_ptr, u_char st0tag)
34 FPU_stack_underflow(); 34 FPU_stack_underflow();
35} 35}
36 36
37static void ftst_(FPU_REG * st0_ptr, u_char st0tag) 37static void ftst_(FPU_REG *st0_ptr, u_char st0tag)
38{ 38{
39 switch (st0tag) { 39 switch (st0tag) {
40 case TAG_Zero: 40 case TAG_Zero:
@@ -85,7 +85,7 @@ static void ftst_(FPU_REG * st0_ptr, u_char st0tag)
85 } 85 }
86} 86}
87 87
88static void fxam(FPU_REG * st0_ptr, u_char st0tag) 88static void fxam(FPU_REG *st0_ptr, u_char st0tag)
89{ 89{
90 int c = 0; 90 int c = 0;
91 switch (st0tag) { 91 switch (st0tag) {