projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
462811d
)
checkpatch: allow consecutive close braces
author
Joe Perches
<joe@perches.com>
Wed, 25 Sep 2019 23:46:47 +0000
(16:46 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Thu, 26 Sep 2019 00:51:39 +0000
(17:51 -0700)
checkpatch allows consecutive open braces, so it should also allow
consecutive close braces.
Link:
http://lkml.kernel.org/r/bfdb49ae2c3fa7b52fa168769e38b48f959880e2.camel@perches.com
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl
patch
|
blob
|
history
diff --git
a/scripts/checkpatch.pl
b/scripts/checkpatch.pl
index 1f85a3abbd171adbf6e513c8095ec4d3f0cebc67..7603711503ea83d430dbd1781470a23236422d15 100755
(executable)
--- a/
scripts/checkpatch.pl
+++ b/
scripts/checkpatch.pl
@@
-4673,7
+4673,7
@@
sub process {
# closing brace should have a space following it when it has anything
# on the line
- if ($line =~ /}(?!(?:,|;|\)))\S/) {
+ if ($line =~ /}(?!(?:,|;|\)
|\}
))\S/) {
if (ERROR("SPACING",
"space required after that close brace '}'\n" . $herecurr) &&
$fix) {