diff options
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 6d07b6778c91..9c209165f252 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -847,7 +847,7 @@ sub possible { | |||
847 | my ($possible, $line) = @_; | 847 | my ($possible, $line) = @_; |
848 | 848 | ||
849 | print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1); | 849 | print "CHECK<$possible> ($line)\n" if ($dbg_possible > 1); |
850 | if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ && | 850 | if ($possible !~ /^(?:$Modifier|$Storage|$Type|DEFINE_\S+)$/ && |
851 | $possible ne 'goto' && $possible ne 'return' && | 851 | $possible ne 'goto' && $possible ne 'return' && |
852 | $possible ne 'case' && $possible ne 'else' && | 852 | $possible ne 'case' && $possible ne 'else' && |
853 | $possible ne 'asm' && $possible ne '__asm__' && | 853 | $possible ne 'asm' && $possible ne '__asm__' && |