From: Joe Perches Date: Fri, 24 May 2013 18:36:13 +0000 (+0000) Subject: tcp: Remove another indentation level in tcp_rcv_state_process X-Git-Tag: v3.11-rc1~16^2~311 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61eb900352ff731d990d5415ce9f04e4af6a6136;p=pandora-kernel.git tcp: Remove another indentation level in tcp_rcv_state_process case TCP_SYN_RECV: can have another indentation level removed by converting if (acceptable) { ...; } else { return 1; } to if (!acceptable) return 1; ...; Reflow code and comments to fit 80 columns. Another pure cleanup patch. Signed-off-by: Joe Perches Improved-by: Eric Dumazet Signed-off-by: David S. Miller --- Reading git-diff-tree failed