diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-04-28 09:39:10 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:12 -0400 |
commit | cd21dfcfbb5c43de54f6be795dde07397da2bc2f (patch) | |
tree | ed3a6c46fd6aabac95c99b1e816493fcb5f788f8 /arch/mips/math-emu/dp_sqrt.c | |
parent | 63b2d2f4d2073ac3452ce977d27cc81eabaa61a3 (diff) |
Fix preemption and SMP problems in the FP emulator code.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/dp_sqrt.c')
-rw-r--r-- | arch/mips/math-emu/dp_sqrt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/dp_sqrt.c b/arch/mips/math-emu/dp_sqrt.c index c35e871ae975..032328c49888 100644 --- a/arch/mips/math-emu/dp_sqrt.c +++ b/arch/mips/math-emu/dp_sqrt.c | |||
@@ -37,7 +37,7 @@ static const unsigned table[] = { | |||
37 | 37 | ||
38 | ieee754dp ieee754dp_sqrt(ieee754dp x) | 38 | ieee754dp ieee754dp_sqrt(ieee754dp x) |
39 | { | 39 | { |
40 | struct ieee754_csr oldcsr; | 40 | struct _ieee754_csr oldcsr; |
41 | ieee754dp y, z, t; | 41 | ieee754dp y, z, t; |
42 | unsigned scalx, yh; | 42 | unsigned scalx, yh; |
43 | COMPXDP; | 43 | COMPXDP; |