[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191114100416.23928-1-u.kleine-koenig@pengutronix.de>
Date: Thu, 14 Nov 2019 11:04:16 +0100
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: Andy Whitcroft <apw@...onical.com>, Joe Perches <joe@...ches.com>,
Rasmus Villemoes <linux@...musvillemoes.dk>,
Petr Mladek <pmladek@...e.com>,
Andy Shevchenko <andy.shevchenko@...il.com>
Cc: linux-kernel@...r.kernel.org, kernel@...gutronix.de
Subject: [PATCH] checkpatch: don't warn about new vsprintf pointer extension '%pe'
This extension was introduced in commit 57f5677e535b ("printf: add
support for printing symbolic error names").
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
---
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 6fcc66afb088..31cd9b767c1e 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -6022,7 +6022,7 @@ sub process {
while ($fmt =~ /(\%[\*\d\.]*p(\w))/g) {
$specifier = $1;
$extension = $2;
- if ($extension !~ /[SsBKRraEhMmIiUDdgVCbGNOxt]/) {
+ if ($extension !~ /[SsBKRraeEhMmIiUDdgVCbGNOxt]/) {
$bad_specifier = $specifier;
last;
}
--
2.24.0
Powered by blists - more mailing lists