diff --git a/[refs] b/[refs] index 779a5c7316d6..9e5b53bbd786 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: fb2d2c1b5825503d30fb6f2dc328dbe4a47d9794 +refs/heads/master: 9446ef569c288e683225fec8337a0b2b81e75cc5 diff --git a/trunk/scripts/checkpatch.pl b/trunk/scripts/checkpatch.pl index 8d010ac0efe1..3cec2990d51e 100755 --- a/trunk/scripts/checkpatch.pl +++ b/trunk/scripts/checkpatch.pl @@ -845,6 +845,11 @@ sub annotate_values { $av_preprocessor = 0; } + } elsif ($cur =~ /^(\(\s*$Type\s*)\)/) { + print "CAST($1)\n" if ($dbg_values > 1); + push(@av_paren_type, $type); + $type = 'C'; + } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) { print "DECLARE($1)\n" if ($dbg_values > 1); $type = 'T';