summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2017-02-24 18:01:41 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-24 20:46:57 -0500
commite4c5babd32f974cf3db4b5bdb02f23132cc81afb (patch)
treed41c61a5d14983da808de3ac672d72abfecc27e8 /scripts
parent1bde561e471c964b57512008351ed75ead754b4b (diff)
checkpatch: notice unbalanced else braces in a patch
Patches that add or modify code like } else <foo> or else { <bar> where one branch appears to have a brace and the other branch does not have a brace should emit a --strict style message. Link: http://lkml.kernel.org/r/c6be32747fc725cbc235802991746700a0f54fdc.1486754390.git.joe@perches.com Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 12db1483e6c2..7fb73d92801c 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -5104,6 +5104,12 @@ sub process {
5104 } 5104 }
5105 } 5105 }
5106 5106
5107# check for single line unbalanced braces
5108 if ($sline =~ /.\s*\}\s*else\s*$/ ||
5109 $sline =~ /.\s*else\s*\{\s*$/) {
5110 CHK("BRACES", "Unbalanced braces around else statement\n" . $herecurr);
5111 }
5112
5107# check for unnecessary blank lines around braces 5113# check for unnecessary blank lines around braces
5108 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) { 5114 if (($line =~ /^.\s*}\s*$/ && $prevrawline =~ /^.\s*$/)) {
5109 if (CHK("BRACES", 5115 if (CHK("BRACES",