aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2017-01-02 16:22:23 +0100
committerJonathan Corbet <corbet@lwn.net>2017-01-04 15:07:23 -0700
commit02a4f4fe522c29bcd4a61e094f7fe8d64f00ee06 (patch)
tree5191feb2dc9716e9cdc563fbea2cc7777997b13f /scripts
parentDoc: clarify source of jitter in USB1.1, and USB2.0 (diff)
downloadlinux-dev-02a4f4fe522c29bcd4a61e094f7fe8d64f00ee06.tar.xz
linux-dev-02a4f4fe522c29bcd4a61e094f7fe8d64f00ee06.zip
kernel-doc: cleanup parameter type in function-typed arguments
A prototype like /** * foo - sample definition * @bar: a parameter */ int foo(int (*bar)(int x, int y)); is currently producing .. c:function:: int foo (int (*bar) (int x, int y) sample definition **Parameters** ``int (*)(int x, int y) bar`` a parameter Collapse the spaces so that the output is nicer. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kernel-doc1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index 030fc633acd4..c1ea91c2e497 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -2409,6 +2409,7 @@ sub push_parameter($$$) {
# "[blah" in a parameter string;
###$param =~ s/\s*//g;
push @parameterlist, $param;
+ $type =~ s/\s\s+/ /g;
$parametertypes{$param} = $type;
}