checkpatch: increase line length warning to 100
Change-Id: Ief0445ea6581929b3ffdcf8bc644ce5f27b392c4 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>__archive__
parent
efbafd9dc8
commit
ce3905a29f
|
@ -1664,15 +1664,15 @@ sub process {
|
||||||
# check we are in a valid source file if not then ignore this hunk
|
# check we are in a valid source file if not then ignore this hunk
|
||||||
next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
|
next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
|
||||||
|
|
||||||
#80 column limit
|
#100 column limit
|
||||||
if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
|
if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
|
||||||
$rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
|
$rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
|
||||||
!($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
|
!($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ ||
|
||||||
$line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
|
$line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) &&
|
||||||
$length > 80)
|
$length > 100)
|
||||||
{
|
{
|
||||||
WARN("LONG_LINE",
|
WARN("LONG_LINE",
|
||||||
"line over 80 characters\n" . $herecurr);
|
"line over 100 characters\n" . $herecurr);
|
||||||
}
|
}
|
||||||
|
|
||||||
# check for spaces before a quoted newline
|
# check for spaces before a quoted newline
|
||||||
|
|
Loading…
Reference in New Issue