diff options
author | Andy Whitcroft <apw@shadowen.org> | 2008-07-24 04:29:05 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 17:47:26 (GMT) |
commit | 389a2fe57ffc59a649bea39db4d7e6d2eff2b562 (patch) | |
tree | f5f0492710f0331a5057281272e89797f38d1b80 /scripts | |
parent | 3c232147a7d5b0418b0a0bae0e5b9a62fb81f4f2 (diff) | |
download | linux-fsl-qoriq-389a2fe57ffc59a649bea39db4d7e6d2eff2b562.tar.xz |
checkpatch: allow for type modifiers on multiple declarations
Allow for type modifiers mid declaration on multiple declarations:
struct mxser_mstatus ms, __user *msu = argp;
Reported by Jiri Slaby.
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 3961e75..bcfb8ef 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -721,6 +721,10 @@ sub annotate_values { print "DECLARE($1)\n" if ($dbg_values > 1); $type = 'T'; + } elsif ($cur =~ /^($Modifier)\s*/) { + print "MODIFIER($1)\n" if ($dbg_values > 1); + $type = 'T'; + } elsif ($cur =~ /^(\#\s*define\s*$Ident)(\(?)/o) { print "DEFINE($1,$2)\n" if ($dbg_values > 1); $av_preprocessor = 1; |