From 4be1c09bc3f900983e4239f3a4d46b5ff36d237a Mon Sep 17 00:00:00 2001 From: Israel Schlesinger Date: Tue, 27 Jul 2010 13:28:26 -0700 Subject: [PATCH] checkpatch: remove column limit for checkpatch patches Currently checkpatch is enforcing an 80 character column limit. This should not be applied for patches modifying checkpatch. Change-Id: I8e8935e633d79a7ee535ce6a90e54447a22d9a91 Signed-off-by: Israel Schlesinger (cherry picked from commit 4aa1b864119e2d0e49efefcd6dba7349f13c3939) Conflicts: scripts/checkpatch.pl --- scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 9563e97c04d7..5b524669e5e2 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1859,6 +1859,7 @@ sub process { $rawline !~ /^.\s*\*\s*\@$Ident\s/ && !($line =~ /^\+\s*$logFunctions\s*\(\s*(?:(KERN_\S+\s*|[^"]*))?"[X\t]*"\s*(?:|,|\)\s*;)\s*$/ || $line =~ /^\+\s*"[^"]*"\s*(?:\s*|,|\)\s*;)\s*$/) && + $realfile ne "scripts/checkpatch.pl" && $length > 80) { WARN("LONG_LINE",