From: Andy Whitcroft Date: Thu, 16 Oct 2008 05:02:31 +0000 (-0700) Subject: checkpatch: accept any sized le/be type X-Git-Tag: v2.6.28-rc1~469 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=afbe8d283b97b2317dab900fb11d2a8878ee3c23;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 6eceda7..bb88df2 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},