diff options
author | Heba Aamer <heba93aamer@gmail.com> | 2015-02-13 17:38:49 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-14 00:21:40 -0500 |
commit | caac1d5fddf2d55e1e1fd6d86f6fc178c801e286 (patch) | |
tree | 6a903f936b70146365303d8017fb1d5d34e7f150 /scripts | |
parent | f8e58219dc58cce633697fe15e6c5597bedb296b (diff) |
checkpatch: improve seq_print->seq_puts suggestion
Improve the format specifier test by removing any %% before looking for
any remaining % format specifier.
Signed-off-by: Heba Aamer <heba93aamer@gmail.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 059c032d8882..7f1804e052f2 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -4854,7 +4854,8 @@ sub process { | |||
4854 | # check for seq_printf uses that could be seq_puts | 4854 | # check for seq_printf uses that could be seq_puts |
4855 | if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) { | 4855 | if ($sline =~ /\bseq_printf\s*\(.*"\s*\)\s*;\s*$/) { |
4856 | my $fmt = get_quoted_string($line, $rawline); | 4856 | my $fmt = get_quoted_string($line, $rawline); |
4857 | if ($fmt ne "" && $fmt !~ /[^\\]\%/) { | 4857 | $fmt =~ s/%%//g; |
4858 | if ($fmt !~ /%/) { | ||
4858 | if (WARN("PREFER_SEQ_PUTS", | 4859 | if (WARN("PREFER_SEQ_PUTS", |
4859 | "Prefer seq_puts to seq_printf\n" . $herecurr) && | 4860 | "Prefer seq_puts to seq_printf\n" . $herecurr) && |
4860 | $fix) { | 4861 | $fix) { |