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/sp_tlong.c:75: ERROR: else should follow close brace '}'

Signed-off-by: Andrea Gelmini <[email protected]>
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/1276/
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
Gelma authored and ralfbaechle committed Aug 5, 2010
1 parent 3e4088a commit abb86dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/mips/math-emu/sp_tlong.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ s64 ieee754sp_tlong(ieee754sp x)
round = 0;
sticky = residue != 0;
xm = 0;
}
else {
} else {
residue = xm << (32 - SP_MBITS + xe);
round = (residue >> 31) != 0;
sticky = (residue << 1) != 0;
Expand Down

0 comments on commit abb86dc

Please sign in to comment.