From: Joe Perches Date: Wed, 6 Aug 2014 23:11:14 +0000 (-0700) Subject: checkpatch: fix brace style misuses of else and while X-Git-Tag: cleanup-for-v3.18~96^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b8856f4b102ce148611322465f2ff8932664411;p=pandora-kernel.git checkpatch: fix brace style misuses of else and while Add --fix corrections for ELSE_AFTER_BRACE and WHILE_AFTER_BRACE misuses. if (x) { ... } else { ... } is corrected to if (x) { ... } else { ... } and do { ... } while (x); is corrected to do { ... } while (x); Signed-off-by: Joe Perches Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed