diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 57df90699219..7fee82384ed4 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -182,7 +182,7 @@ our $UTF8 = qr { | |||
182 | }x; | 182 | }x; |
183 | 183 | ||
184 | our $typeTypedefs = qr{(?x: | 184 | our $typeTypedefs = qr{(?x: |
185 | (?:__)?(?:u|s|be|le)(?:\d|\d\d)| | 185 | (?:__)?(?:u|s|be|le)(?:8|16|32|64)| |
186 | atomic_t | 186 | atomic_t |
187 | )}; | 187 | )}; |
188 | 188 | ||
@@ -1936,7 +1936,7 @@ sub process { | |||
1936 | # A unary '*' may be const | 1936 | # A unary '*' may be const |
1937 | 1937 | ||
1938 | } elsif ($ctx =~ /.xW/) { | 1938 | } elsif ($ctx =~ /.xW/) { |
1939 | ERROR("Aspace prohibited after that '$op' $at\n" . $hereptr); | 1939 | ERROR("space prohibited after that '$op' $at\n" . $hereptr); |
1940 | } | 1940 | } |
1941 | 1941 | ||
1942 | # unary ++ and unary -- are allowed no space on one side. | 1942 | # unary ++ and unary -- are allowed no space on one side. |