Skip to content

Commit

Permalink
MIPS: math-emu: Checkpatch cleanup
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andrea Gelmini authored and Ralf Baechle committed Aug 5, 2010
1 parent 055899a commit 6337f5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/mips/math-emu/dp_tint.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ int ieee754dp_tint(ieee754dp x)
round = 0;
sticky = residue != 0;
xm = 0;
}
else {
} else {
residue = xm << (64 - DP_MBITS + xe);
round = (residue >> 63) != 0;
sticky = (residue << 1) != 0;
Expand Down

0 comments on commit 6337f5e

Please sign in to comment.