diff options
author | Spencer Oliver <spen@spen-soft.co.uk> | 2012-02-02 15:00:06 +0000 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2012-02-06 10:54:27 +0000 |
commit | 3da783f62854fd5e6dcde5a465680b067c4e630c (patch) | |
tree | b7ccc88615dea2634be8340a7d162d544a326470 /tools | |
parent | 9f0cba528a163645c8ecace413731c23310f2c26 (diff) | |
download | riscv-openocd-3da783f62854fd5e6dcde5a465680b067c4e630c.zip riscv-openocd-3da783f62854fd5e6dcde5a465680b067c4e630c.tar.gz riscv-openocd-3da783f62854fd5e6dcde5a465680b067c4e630c.tar.bz2 |
checkpatch: increase line length to 120
Change-Id: I963385d0a4880f2b1e55208c8dfe65c1870ac6e1
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/422
Tested-by: jenkins
Diffstat (limited to 'tools')
-rwxr-xr-x | 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 73cf240..7c67cd0 100755 --- 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)$/); -#100 column limit +#120 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 > 100) + $length > 120) { WARN("LONG_LINE", - "line over 100 characters\n" . $herecurr); + "line over 120 characters\n" . $herecurr); } # check for spaces before a quoted newline |