aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 061c28e7bcfa..95ba30a24dcf 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2911,6 +2911,7 @@ sub process {
2911 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), 2911 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(),
2912 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); 2912 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo();
2913 $dstat !~ /^(?:$Ident|-?$Constant)$/ && # 10 // foo() 2913 $dstat !~ /^(?:$Ident|-?$Constant)$/ && # 10 // foo()
2914 $dstat !~ /^'X'$/ && # character constants
2914 $dstat !~ /$exceptions/ && 2915 $dstat !~ /$exceptions/ &&
2915 $dstat !~ /^\.$Ident\s*=/ && # .foo = 2916 $dstat !~ /^\.$Ident\s*=/ && # .foo =
2916 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...) 2917 $dstat !~ /^do\s*$Constant\s*while\s*$Constant;?$/ && # do {...} while (...); // do {...} while (...)