[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140304105421.GA25304@yogesh-Dell-System-XPS-L502X>
Date: Tue, 4 Mar 2014 16:24:21 +0530
From: yogesh <mr.yogesh@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Joe Perches <joe@...ches.com>, Levente Kurusa <levex@...ux.com>
Subject: [Patch 1/1] Changes to scripts/checkpatch.pl for improving warning
messages in case printk usage is detected in a patch
This patch modifies warning message when printk is used in a patch. It mentions to use subsystem_dbg instead of netdev_dbg as the first preffered format of logging debug messages.
Signed-off-by: Yogesh Chaudhari <mr.yogesh@...il.com>
---
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 464dcef..81e8273 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2799,7 +2799,7 @@ sub process {
my $level2 = $level;
$level2 = "dbg" if ($level eq "debug");
WARN("PREFER_PR_LEVEL",
- "Prefer netdev_$level2(netdev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
+ "Prefer [subsystem eg: netdev]_$level2([subsystem]dev, ... then dev_$level2(dev, ... then pr_$level(... to printk(KERN_$orig ...\n" . $herecurr);
}
if ($line =~ /\bpr_warning\s*\(/) {
--
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