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
This commit is contained in:
Caleb Szalacinski 2020-05-31 22:41:01 -05:00 committed by Karl Palsson
parent c49b4d35c2
commit 174d3400dd
1 changed files with 1 additions and 1 deletions

View File

@ -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) = @_;