diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 4d928b859845d02ba63cf128c7165bc4896b0fac..fb43c6440e5484abeeb4d8a2d076fe6d030901ad 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -452,7 +452,7 @@ sub output_struct_html(%) {
my %args = %{$_[0]};
my ($parameter);
- print "
".$args{'type'}." ".$args{'struct'}."
\n";
+ print "".$args{'type'}." ".$args{'struct'}. " - " .$args{'purpose'}."
\n";
print "".$args{'type'}." ".$args{'struct'}." {
\n";
foreach $parameter (@{$args{'parameterlist'}}) {
if ($parameter =~ /^#/) {
@@ -498,8 +498,8 @@ sub output_function_html(%) {
my %args = %{$_[0]};
my ($parameter, $section);
my $count;
- print "Function
\n";
+ print "" .$args{'function'}." - ".$args{'purpose'}."
\n";
print "".$args{'functiontype'}."\n";
print "".$args{'function'}."\n";
print "(";