Nick Vaccaro has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46109 )
Change subject: util: update max line length to 96 ......................................................................
util: update max line length to 96
Modify checkpatch to allow 96 column line length.
BUG=b:170217700 TEST=Modify a file to extend a line to 96 characters and verify that checkpatch allows it to be committed.
Change-Id: I98c50a1f87be043a31cc9d0e9aac915be08c0acb Signed-off-by: Nick Vaccaro nvaccaro@google.com --- M util/lint/checkpatch.pl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/09/46109/1
diff --git a/util/lint/checkpatch.pl b/util/lint/checkpatch.pl index 1affdb7..c6cbe69 100755 --- a/util/lint/checkpatch.pl +++ b/util/lint/checkpatch.pl @@ -51,7 +51,7 @@ my @exclude = (); #coreboot my $help = 0; my $configuration_file = ".checkpatch.conf"; -my $max_line_length = 80; +my $max_line_length = 96; my $ignore_perl_version = 0; my $minimum_perl_version = 5.10.0; my $min_conf_desc_length = 4;