Commit 5646bc71 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

checkpatch: warn on space before semicolon

Make space before semicolon a warning instead of a --strict CHK test.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 04db4d25
......@@ -2522,7 +2522,7 @@ sub process {
# check for whitespace before a non-naked semicolon
if ($line =~ /^\+.*\S\s+;/) {
CHK("SPACING",
WARN("SPACING",
"space prohibited before semicolon\n" . $herecurr);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment