diff options
Diffstat (limited to 'scripts/kernel-doc')
-rwxr-xr-x | scripts/kernel-doc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 4d928b859845..8be269ffbf9d 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -452,7 +452,7 @@ sub output_struct_html(%) { | |||
452 | my %args = %{$_[0]}; | 452 | my %args = %{$_[0]}; |
453 | my ($parameter); | 453 | my ($parameter); |
454 | 454 | ||
455 | print "<h2>".$args{'type'}." ".$args{'struct'}."</h2>\n"; | 455 | print "<h2>".$args{'type'}." ".$args{'struct'}. " - " .$args{'purpose'}."</h2>\n"; |
456 | print "<b>".$args{'type'}." ".$args{'struct'}."</b> {<br>\n"; | 456 | print "<b>".$args{'type'}." ".$args{'struct'}."</b> {<br>\n"; |
457 | foreach $parameter (@{$args{'parameterlist'}}) { | 457 | foreach $parameter (@{$args{'parameterlist'}}) { |
458 | if ($parameter =~ /^#/) { | 458 | if ($parameter =~ /^#/) { |
@@ -498,8 +498,8 @@ sub output_function_html(%) { | |||
498 | my %args = %{$_[0]}; | 498 | my %args = %{$_[0]}; |
499 | my ($parameter, $section); | 499 | my ($parameter, $section); |
500 | my $count; | 500 | my $count; |
501 | print "<h2>Function</h2>\n"; | ||
502 | 501 | ||
502 | print "<h2>" .$args{'function'}." - ".$args{'purpose'}."</h2>\n"; | ||
503 | print "<i>".$args{'functiontype'}."</i>\n"; | 503 | print "<i>".$args{'functiontype'}."</i>\n"; |
504 | print "<b>".$args{'function'}."</b>\n"; | 504 | print "<b>".$args{'function'}."</b>\n"; |
505 | print "("; | 505 | print "("; |
@@ -1547,7 +1547,7 @@ sub dump_function($$) { | |||
1547 | $prototype =~ s/^noinline +//; | 1547 | $prototype =~ s/^noinline +//; |
1548 | $prototype =~ s/__devinit +//; | 1548 | $prototype =~ s/__devinit +//; |
1549 | $prototype =~ s/^#define\s+//; #ak added | 1549 | $prototype =~ s/^#define\s+//; #ak added |
1550 | $prototype =~ s/__attribute__ \(\([a-z,]*\)\)//; | 1550 | $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//; |
1551 | 1551 | ||
1552 | # Yes, this truly is vile. We are looking for: | 1552 | # Yes, this truly is vile. We are looking for: |
1553 | # 1. Return type (may be nothing if we're looking at a macro) | 1553 | # 1. Return type (may be nothing if we're looking at a macro) |