Commit b7afa92b authored by Daniel Vetter's avatar Daniel Vetter Committed by Jani Nikula

scripts/kernel-doc: Also give functions symbolic names

state3 = prototype parsing, so name them accordingly.

Cc: Jani Nikula <jani.nikula@intel.com>
Cc: linux-doc@vger.kernel.org
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 16e161c8
...@@ -2593,7 +2593,7 @@ sub syscall_munge() { ...@@ -2593,7 +2593,7 @@ sub syscall_munge() {
} }
} }
sub process_state3_function($$) { sub process_proto_function($$) {
my $x = shift; my $x = shift;
my $file = shift; my $file = shift;
...@@ -2623,7 +2623,7 @@ sub process_state3_function($$) { ...@@ -2623,7 +2623,7 @@ sub process_state3_function($$) {
} }
} }
sub process_state3_type($$) { sub process_proto_type($$) {
my $x = shift; my $x = shift;
my $file = shift; my $file = shift;
...@@ -2937,9 +2937,9 @@ sub process_file($) { ...@@ -2937,9 +2937,9 @@ sub process_file($) {
$state = STATE_INLINE; $state = STATE_INLINE;
$inline_doc_state = STATE_INLINE_NAME; $inline_doc_state = STATE_INLINE_NAME;
} elsif ($decl_type eq 'function') { } elsif ($decl_type eq 'function') {
process_state3_function($_, $file); process_proto_function($_, $file);
} else { } else {
process_state3_type($_, $file); process_proto_type($_, $file);
} }
} elsif ($state == STATE_DOCBLOCK) { } elsif ($state == STATE_DOCBLOCK) {
if (/$doc_end/) if (/$doc_end/)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment