aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d833b737a295..cadf70f0201a 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3772,7 +3772,7 @@ sub process {
3772 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), 3772 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
3773 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); 3773 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
3774 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz 3774 $dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // foo.bar->baz
3775 $dstat !~ /^'X'$/ && # character constants 3775 $dstat !~ /^'X'$/ && $dstat !~ /^'XX'$/ && # character constants
3776 $dstat !~ /$exceptions/ && 3776 $dstat !~ /$exceptions/ &&
3777 $dstat !~ /^\.$Ident\s*=/ && # .foo = 3777 $dstat !~ /^\.$Ident\s*=/ && # .foo =
3778 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo 3778 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo