diff options
author | Spencer Oliver <spen@spen-soft.co.uk> | 2011-11-03 23:09:05 +0000 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2011-11-03 23:09:05 +0000 |
commit | ce3905a29f6a83c278134b3d126d7a38826e94b7 (patch) | |
tree | 8e9267c3e5b1d509328666a0b147ea18f0e54725 | |
parent | efbafd9dc8c30b66755a3a840fe58bd573cec1db (diff) | |
download | riscv-openocd-ce3905a29f6a83c278134b3d126d7a38826e94b7.zip riscv-openocd-ce3905a29f6a83c278134b3d126d7a38826e94b7.tar.gz riscv-openocd-ce3905a29f6a83c278134b3d126d7a38826e94b7.tar.bz2 |
checkpatch: increase line length warning to 100
Change-Id: Ief0445ea6581929b3ffdcf8bc644ce5f27b392c4
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r-- | tools/scripts/checkpatch.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/scripts/checkpatch.pl b/tools/scripts/checkpatch.pl index 0b3e35c..b7134f8 100644 --- a/tools/scripts/checkpatch.pl +++ b/tools/scripts/checkpatch.pl @@ -1664,15 +1664,15 @@ sub process { # check we are in a valid source file if not then ignore this hunk next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/); -#80 column limit +#100 column limit if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && $rawline !~ /^.\s*\*\s*\@$Ident\s/ && !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ || $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) && - $length > 80) + $length > 100) { WARN("LONG_LINE", - "line over 80 characters\n" . $herecurr); + "line over 100 characters\n" . $herecurr); } # check for spaces before a quoted newline |