diff options
author | Joe Perches <joe@perches.com> | 2012-07-30 17:41:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 20:25:17 -0400 |
commit | 66c80b6077256898df948ac6acf547b47ddb1fcf (patch) | |
tree | 20982260f1fd1e875188b24ddd598e77544e5354 /scripts | |
parent | 4a273195a551a27a9a3ebed072c8df16c853da7f (diff) |
checkpatch: Add acheck for use of sizeof without parenthesis
Kernel style uses parenthesis around sizeof.
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Andy Whitcroft <apw@canonical.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 4bad5700670a..40b0627aeb5e 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -3265,6 +3265,12 @@ sub process { | |||
3265 | "sizeof(& should be avoided\n" . $herecurr); | 3265 | "sizeof(& should be avoided\n" . $herecurr); |
3266 | } | 3266 | } |
3267 | 3267 | ||
3268 | # check for sizeof without parenthesis | ||
3269 | if ($line =~ /\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/) { | ||
3270 | WARN("SIZEOF_PARENTHESIS", | ||
3271 | "sizeof $1 should be sizeof($1)\n" . $herecurr); | ||
3272 | } | ||
3273 | |||
3268 | # check for line continuations in quoted strings with odd counts of " | 3274 | # check for line continuations in quoted strings with odd counts of " |
3269 | if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) { | 3275 | if ($rawline =~ /\\$/ && $rawline =~ tr/"/"/ % 2) { |
3270 | WARN("LINE_CONTINUATIONS", | 3276 | WARN("LINE_CONTINUATIONS", |