[PATCH 1/5] kernel-doc: cleanup parameter type in function-typed arguments

From: Paolo Bonzini
Date: Mon Jan 02 2017 - 10:23:49 EST


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@xxxxxxxxxx>
---
scripts/kernel-doc | 1 +
1 file changed, 1 insertion(+)

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;
}

--
2.9.3