提交 9360b0e5 编写于 作者: A Andy Whitcroft 提交者: Linus Torvalds

checkpatch: extend attribute testing to all modifiers

We should allow testing of all modifiers not just attributes.  Extend
testing and test for all the know modifiers.
Signed-off-by: NAndy Whitcroft <apw@canonical.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 667026e7
...@@ -1584,9 +1584,9 @@ sub process { ...@@ -1584,9 +1584,9 @@ sub process {
} }
# TEST: allow direct testing of the attribute matcher. # TEST: allow direct testing of the attribute matcher.
if ($dbg_attr) { if ($dbg_attr) {
if ($line =~ /^.\s*$Attribute\s*$/) { if ($line =~ /^.\s*$Modifier\s*$/) {
ERROR("TEST: is attr\n" . $herecurr); ERROR("TEST: is attr\n" . $herecurr);
} elsif ($dbg_attr > 1 && $line =~ /^.+($Attribute)/) { } elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
ERROR("TEST: is not attr ($1 is)\n". $herecurr); ERROR("TEST: is not attr ($1 is)\n". $herecurr);
} }
next; next;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册