diff options
Diffstat (limited to 'scripts/kernel-doc')
-rwxr-xr-x | scripts/kernel-doc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index c3a4854e5ee9..c47eb31d604c 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -1456,7 +1456,16 @@ sub create_parameterlist($$$) { | |||
1456 | if ($args[0] =~ m/\*/) { | 1456 | if ($args[0] =~ m/\*/) { |
1457 | $args[0] =~ s/(\*+)\s*/ $1/; | 1457 | $args[0] =~ s/(\*+)\s*/ $1/; |
1458 | } | 1458 | } |
1459 | my @first_arg = split('\s+', shift @args); | 1459 | |
1460 | my @first_arg; | ||
1461 | if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { | ||
1462 | shift @args; | ||
1463 | push(@first_arg, split('\s+', $1)); | ||
1464 | push(@first_arg, $2); | ||
1465 | } else { | ||
1466 | @first_arg = split('\s+', shift @args); | ||
1467 | } | ||
1468 | |||
1460 | unshift(@args, pop @first_arg); | 1469 | unshift(@args, pop @first_arg); |
1461 | $type = join " ", @first_arg; | 1470 | $type = join " ", @first_arg; |
1462 | 1471 | ||