[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1265792131-15835-1-git-send-email-jochen.maes@sejo.be>
Date: Wed, 10 Feb 2010 09:55:31 +0100
From: Jochen Maes <jochen.maes@...o.be>
To: apw@...onical.com
Cc: akpm@...ux-foundation.org, dwalker@...o99.com,
linux-kernel@...r.kernel.org, Jochen Maes <jochen.maes@...o.be>
Subject: [PATCH 2/2] scripts: Remove the 80 line limit check
As lately the 80 line limit is not really enforced anymore I think it's
cleaner not to do che checks in the checkpatch. It gives extra output
that is ignored anyway.
Signed-off-by: Jochen Maes <jochen.maes@...o.be>
---
scripts/checkpatch.pl | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 3257d3d..c91ad29 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1374,15 +1374,6 @@ 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)$/);
-#80 column limit
- if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ &&
- $rawline !~ /^.\s*\*\s*\@$Ident\s/ &&
- $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ &&
- $length > 80)
- {
- WARN("line over 80 characters\n" . $herecurr);
- }
-
# check for adding lines without a newline.
if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
WARN("adding a line without newline at end of file\n" . $herecurr);
--
1.6.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists