aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 92d13710ff52..15a590425129 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1886,11 +1886,11 @@ sub process {
1886 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) { 1886 if ($ctx !~ /[WEBC]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
1887 ERROR("space required before that '$op' $at\n" . $hereptr); 1887 ERROR("space required before that '$op' $at\n" . $hereptr);
1888 } 1888 }
1889 if ($op eq '*' && $cc =~/\s*const\b/) { 1889 if ($op eq '*' && $cc =~/\s*$Modifier\b/) {
1890 # A unary '*' may be const 1890 # A unary '*' may be const
1891 1891
1892 } elsif ($ctx =~ /.xW/) { 1892 } elsif ($ctx =~ /.xW/) {
1893 ERROR("space prohibited after that '$op' $at\n" . $hereptr); 1893 ERROR("Aspace prohibited after that '$op' $at\n" . $hereptr);
1894 } 1894 }
1895 1895
1896 # unary ++ and unary -- are allowed no space on one side. 1896 # unary ++ and unary -- are allowed no space on one side.