From f988855633f63a47dd0835274f23bbb9bdfc3bf0 Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Thu, 19 Jul 2007 01:48:24 -0700 Subject: [PATCH] --- yaml --- r: 61593 b: refs/heads/master c: 5f8c7c98ae3888cf0a2cf320f514f75cc92f00be h: refs/heads/master i: 61591: 9028ee664df9eac6930509923735f1b151262a78 v: v3 --- [refs] | 2 +- trunk/scripts/kernel-doc | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index ce9f94127189..f0b2e58cb026 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2ac534bc127bcf31f8cb76f65b1b0b7cba5e81ac +refs/heads/master: 5f8c7c98ae3888cf0a2cf320f514f75cc92f00be diff --git a/trunk/scripts/kernel-doc b/trunk/scripts/kernel-doc index e5bf649e516a..08894f4aab2c 100755 --- a/trunk/scripts/kernel-doc +++ b/trunk/scripts/kernel-doc @@ -154,6 +154,7 @@ use strict; my $errors = 0; my $warnings = 0; +my $anon_struct_union = 0; # match expressions used to find embedded type information my $type_constant = '\%([-_\w]+)'; @@ -1510,8 +1511,13 @@ sub push_parameter($$$) { my $param = shift; my $type = shift; my $file = shift; - my $anon = 0; + if (($anon_struct_union == 1) && ($type eq "") && + ($param eq "}")) { + return; # ignore the ending }; from anon. struct/union + } + + $anon_struct_union = 0; my $param_name = $param; $param_name =~ s/\[.*//; @@ -1530,16 +1536,16 @@ sub push_parameter($$$) { # handle unnamed (anonymous) union or struct: { $type = $param; - $param = "{unnamed_" . $param. "}"; + $param = "{unnamed_" . $param . "}"; $parameterdescs{$param} = "anonymous\n"; - $anon = 1; + $anon_struct_union = 1; } # warn if parameter has no description # (but ignore ones starting with # as these are not parameters # but inline preprocessor statements); # also ignore unnamed structs/unions; - if (!$anon) { + if (!$anon_struct_union) { if (!defined $parameterdescs{$param_name} && $param_name !~ /^#/) { $parameterdescs{$param_name} = $undescribed;