diff options
author | Joe Perches <joe@perches.com> | 2014-12-10 18:51:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-10 20:41:12 -0500 |
commit | 90ad30e5b2a759333f06eee64e59a0d886d02036 (patch) | |
tree | d656578867675998a058c62fee5436c2de4851f1 /scripts | |
parent | 0ab9019184f1de09409434204cb8fbffe8286e00 (diff) |
checkpatch: add test for consecutive string fragments
Emit a warning when single line string coalescing occurs.
Code that uses compiler string concatenation on a single line like:
printk("foo" "bar");
is generally better to read concatenated like:
printk("foobar");
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-x | scripts/checkpatch.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index d06b6be2841e..5e63dce2e428 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -4464,6 +4464,12 @@ sub process { | |||
4464 | "Concatenated strings should use spaces between elements\n" . $herecurr); | 4464 | "Concatenated strings should use spaces between elements\n" . $herecurr); |
4465 | } | 4465 | } |
4466 | 4466 | ||
4467 | # uncoalesced string fragments | ||
4468 | if ($line =~ /"X*"\s*"/) { | ||
4469 | WARN("STRING_FRAGMENTS", | ||
4470 | "Consecutive strings are generally better as a single string\n" . $herecurr); | ||
4471 | } | ||
4472 | |||
4467 | # warn about #if 0 | 4473 | # warn about #if 0 |
4468 | if ($line =~ /^.\s*\#\s*if\s+0\b/) { | 4474 | if ($line =~ /^.\s*\#\s*if\s+0\b/) { |
4469 | CHK("REDUNDANT_CODE", | 4475 | CHK("REDUNDANT_CODE", |