[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191128004752.35268-5-wangkefeng.wang@huawei.com>
Date: Thu, 28 Nov 2019 08:47:52 +0800
From: Kefeng Wang <wangkefeng.wang@...wei.com>
To: <pmladek@...e.com>, <joe@...ches.com>,
<linux-kernel@...r.kernel.org>
CC: <gregkh@...uxfoundation.org>, <tj@...nel.org>, <arnd@...db.de>,
<sergey.senozhatsky@...il.com>, <rostedt@...dmis.org>,
Kefeng Wang <wangkefeng.wang@...wei.com>,
Andy Whitcroft <apw@...onical.com>
Subject: [PATCH 4/4] checkpatch: Drop pr_warning check
All pr_warning are removed from kernel, let's cleanup pr_warning
check in checkpatch.
Cc: Andy Whitcroft <apw@...onical.com>
Cc: Joe Perches <joe@...ches.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@...wei.com>
---
scripts/checkpatch.pl | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 64890be3c8fd..447c0050eec0 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -4113,15 +4113,6 @@ sub process {
"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*\(/) {
- if (WARN("PREFER_PR_LEVEL",
- "Prefer pr_warn(... to pr_warning(...\n" . $herecurr) &&
- $fix) {
- $fixed[$fixlinenr] =~
- s/\bpr_warning\b/pr_warn/;
- }
- }
-
if ($line =~ /\bdev_printk\s*\(\s*KERN_([A-Z]+)/) {
my $orig = $1;
my $level = lc($orig);
--
2.20.1
Powered by blists - more mailing lists