diff options
author | Andy Whitcroft <apw@canonical.com> | 2012-01-10 15:10:13 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 16:30:51 -0800 |
commit | 6b48db24e30d371bc54566667b82ca3d64aab80a (patch) | |
tree | 4532e530d3e97917dc8a82bfc1f23f91e9627150 /scripts/checkpatch.pl | |
parent | addcdcea99514bee64b5bf091ac9fd2fc5da65cf (diff) | |
download | linux-3.10-6b48db24e30d371bc54566667b82ca3d64aab80a.tar.gz linux-3.10-6b48db24e30d371bc54566667b82ca3d64aab80a.tar.bz2 linux-3.10-6b48db24e30d371bc54566667b82ca3d64aab80a.zip |
checkpatch: typeof may have more complex arguments
typeof may have various more complex forms as its arguement, not just an
identifier. For now allow us to leak to the first close perenthesis ')'.
Signed-off-by: Andy Whitcroft <apw@canonical.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-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 497416c8360..eb4b55940c0 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -315,7 +315,7 @@ sub build_types { $NonptrType = qr{ (?:$Modifier\s+|const\s+)* (?: - (?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)| + (?:typeof|__typeof__)\s*\([^\)]*\)| (?:$typeTypedefs\b)| (?:${all}\b) ) |