diff options
author | Andy Whitcroft <apw@shadowen.org> | 2008-10-15 22:02:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:37 -0700 |
commit | afbe8d283b97b2317dab900fb11d2a8878ee3c23 (patch) | |
tree | ff555e381fef88472de262ad94c22e22943981dd /scripts | |
parent | b132e5d5865325a9aa42b122c4c466903bf48348 (diff) | |
download | linux-3.10-afbe8d283b97b2317dab900fb11d2a8878ee3c23.tar.gz linux-3.10-afbe8d283b97b2317dab900fb11d2a8878ee3c23.tar.bz2 linux-3.10-afbe8d283b97b2317dab900fb11d2a8878ee3c23.zip |
checkpatch: accept any sized le/be type
We are likely going to have 24 bit types. Expand the type matcher to
match any size.
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
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 6eceda7a4bd..bb88df2d001 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -159,7 +159,7 @@ our @typeList = ( qr{float}, qr{double}, qr{bool}, - qr{(?:__)?(?:u|s|be|le)(?:8|16|32|64)}, + qr{(?:__)?(?:u|s|be|le)(?:\d|\d\d)}, qr{struct\s+$Ident}, qr{union\s+$Ident}, qr{enum\s+$Ident}, |