From 174d3400dd91876bf964a537a9859a861cb998dc Mon Sep 17 00:00:00 2001 From: Caleb Szalacinski Date: Sun, 31 May 2020 22:41:01 -0500 Subject: [PATCH] Update checkpatch.pl with changes to the Linux Kernel Coding Style The Linux kernel just deprecated the 80 character line limit. This was always a mild issue of mine because of operations on lengthily-named registers that go just over the 80 character limit. https://www.phoronix.com/scan.php?page=news_item&px=Linux-Kernel-Deprecates-80-Col --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 54026fb9..87bf0560 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -33,7 +33,7 @@ my %ignore_type = (); my @ignore = (); my $help = 0; my $configuration_file = ".checkpatch.conf"; -my $max_line_length = 80; +my $max_line_length = 100; sub help { my ($exitcode) = @_;