summaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
authorAndy Whitcroft2008-10-16 07:02:30 +0200
committerLinus Torvalds2008-10-16 20:21:37 +0200
commita6a84062821738426ed4f58f4d584ecb7feb3dee (patch)
tree7e3da286264b20d4f962fcd72c9019b13253a1d5 /scripts/checkpatch.pl
parentcheckpatch: do is not a possible type (diff)
downloadkernel-qcow2-linux-a6a84062821738426ed4f58f4d584ecb7feb3dee.tar.gz
kernel-qcow2-linux-a6a84062821738426ed4f58f4d584ecb7feb3dee.tar.xz
kernel-qcow2-linux-a6a84062821738426ed4f58f4d584ecb7feb3dee.zip
checkpatch: labels are not possible types
A label is not a candidate for a possible type. Exclude them. 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/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 6b21188d2cf7..17e1d94fa1fa 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1324,7 +1324,7 @@ sub process {
possible($type, "A:" . $s);
# definitions in global scope can only start with types
- } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b/s) {
+ } elsif ($s =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?(?:const\s+)?($Ident)\b\s*(?!:)/s) {
possible($1, "B:" . $s);
}