diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2010-05-23 15:52:06 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:25:42 -0400 |
commit | 6337f5e5aab7faf6029d9ac4eba7496295bdf93c (patch) | |
tree | b8fdac29803f7112a27fdc0d5bbe2c28b7baae17 /arch/mips/math-emu/dp_tint.c | |
parent | 055899a0e249ad9c1c709376c37ee7103abb22c4 (diff) |
MIPS: math-emu: Checkpatch cleanup
arch/mips/math-emu/dp_tint.c:73: ERROR: else should follow close brace '}'
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1271/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/dp_tint.c')
-rw-r--r-- | arch/mips/math-emu/dp_tint.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/math-emu/dp_tint.c b/arch/mips/math-emu/dp_tint.c index 77b2b7ccf28a..24478623c117 100644 --- a/arch/mips/math-emu/dp_tint.c +++ b/arch/mips/math-emu/dp_tint.c | |||
@@ -69,8 +69,7 @@ int ieee754dp_tint(ieee754dp x) | |||
69 | round = 0; | 69 | round = 0; |
70 | sticky = residue != 0; | 70 | sticky = residue != 0; |
71 | xm = 0; | 71 | xm = 0; |
72 | } | 72 | } else { |
73 | else { | ||
74 | residue = xm << (64 - DP_MBITS + xe); | 73 | residue = xm << (64 - DP_MBITS + xe); |
75 | round = (residue >> 63) != 0; | 74 | round = (residue >> 63) != 0; |
76 | sticky = (residue << 1) != 0; | 75 | sticky = (residue << 1) != 0; |