diff options
Diffstat (limited to 'scripts')
-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 f4e247b277de..93b8e6693cb1 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -3041,7 +3041,7 @@ sub process { | |||
3041 | if ($dstat ne '' && | 3041 | if ($dstat ne '' && |
3042 | $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), | 3042 | $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), |
3043 | $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); | 3043 | $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); |
3044 | $dstat !~ /^[!~-]?(?:$Ident|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo | 3044 | $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz |
3045 | $dstat !~ /^'X'$/ && # character constants | 3045 | $dstat !~ /^'X'$/ && # character constants |
3046 | $dstat !~ /$exceptions/ && | 3046 | $dstat !~ /$exceptions/ && |
3047 | $dstat !~ /^\.$Ident\s*=/ && # .foo = | 3047 | $dstat !~ /^\.$Ident\s*=/ && # .foo = |