From: Andy Whitcroft Date: Tue, 22 Sep 2009 00:04:38 +0000 (-0700) Subject: checkpatch: format strings should not have brackets in macros X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ea71a0a019f913bdf506103bd90140d93a2b83f0;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git checkpatch: format strings should not have brackets in macros We should not recommend braces for the following: #define pr_fmt(fmt) "%s: " fmt, __func__ allow things with double quotes round them to avoid this check. Signed-off-by: Andy Whitcroft Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index e3c6b4922fff..57df90699219 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2288,7 +2288,8 @@ sub process { DECLARE_PER_CPU| DEFINE_PER_CPU| __typeof__\(| - \.$Ident\s*=\s* + \.$Ident\s*=\s*| + ^\"|\"$ }x; #print "REST<$rest> dstat<$dstat>\n"; if ($rest ne '') {