From: Andrea Gelmini Date: Sun, 23 May 2010 19:52:10 +0000 (+0200) Subject: MIPS: math-emu: Checkpatch cleanup X-Git-Tag: v2.6.36-rc1~563^2~131 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=abb86dc5430abe4e07f53b9221fc8eb59321dc41;p=~shefty%2Frdma-dev.git MIPS: math-emu: Checkpatch cleanup arch/mips/math-emu/sp_tlong.c:75: ERROR: else should follow close brace '}' Signed-off-by: Andrea Gelmini Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/1276/ Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/math-emu/sp_tlong.c b/arch/mips/math-emu/sp_tlong.c index 4be21aa81fb..92cd9c511a1 100644 --- a/arch/mips/math-emu/sp_tlong.c +++ b/arch/mips/math-emu/sp_tlong.c @@ -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;