diff options
-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 cf70f123f574..fd597a4b5dad 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -846,7 +846,7 @@ sub possible { | |||
846 | if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ && | 846 | if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ && |
847 | $possible ne 'goto' && $possible ne 'return' && | 847 | $possible ne 'goto' && $possible ne 'return' && |
848 | $possible ne 'case' && $possible ne 'else' && | 848 | $possible ne 'case' && $possible ne 'else' && |
849 | $possible ne 'asm' && | 849 | $possible ne 'asm' && $possible ne '__asm__' && |
850 | $possible !~ /^(typedef|struct|enum)\b/) { | 850 | $possible !~ /^(typedef|struct|enum)\b/) { |
851 | # Check for modifiers. | 851 | # Check for modifiers. |
852 | $possible =~ s/\s*$Storage\s*//g; | 852 | $possible =~ s/\s*$Storage\s*//g; |