diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 25d716cc44dc..2018f4349b47 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -195,7 +195,7 @@ our $typeTypedefs = qr{(?x: | |||
195 | our $logFunctions = qr{(?x: | 195 | our $logFunctions = qr{(?x: |
196 | printk| | 196 | printk| |
197 | pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)| | 197 | pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)| |
198 | dev_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)| | 198 | (dev|netdev|netif)_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)| |
199 | WARN| | 199 | WARN| |
200 | panic | 200 | panic |
201 | )}; | 201 | )}; |
@@ -1409,7 +1409,8 @@ sub process { | |||
1409 | #80 column limit | 1409 | #80 column limit |
1410 | if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && | 1410 | if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && |
1411 | $rawline !~ /^.\s*\*\s*\@$Ident\s/ && | 1411 | $rawline !~ /^.\s*\*\s*\@$Ident\s/ && |
1412 | $line !~ /^\+\s*$logFunctions\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ && | 1412 | !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ || |
1413 | $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) && | ||
1413 | $length > 80) | 1414 | $length > 80) |
1414 | { | 1415 | { |
1415 | WARN("line over 80 characters\n" . $herecurr); | 1416 | WARN("line over 80 characters\n" . $herecurr); |