diff options
Diffstat (limited to 'scripts/kernel-doc')
| -rwxr-xr-x | scripts/kernel-doc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index e10378f769f9..030fc633acd4 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
| @@ -421,6 +421,7 @@ my $doc_block = $doc_com . 'DOC:\s*(.*)?'; | |||
| 421 | my $doc_inline_start = '^\s*/\*\*\s*$'; | 421 | my $doc_inline_start = '^\s*/\*\*\s*$'; |
| 422 | my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)'; | 422 | my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)'; |
| 423 | my $doc_inline_end = '^\s*\*/\s*$'; | 423 | my $doc_inline_end = '^\s*\*/\s*$'; |
| 424 | my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$'; | ||
| 424 | my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; | 425 | my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; |
| 425 | 426 | ||
| 426 | my %parameterdescs; | 427 | my %parameterdescs; |
| @@ -3024,7 +3025,16 @@ sub process_file($) { | |||
| 3024 | } | 3025 | } |
| 3025 | } | 3026 | } |
| 3026 | } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype) | 3027 | } elsif ($state == STATE_PROTO) { # scanning for function '{' (end of prototype) |
| 3027 | if (/$doc_inline_start/) { | 3028 | if (/$doc_inline_oneline/) { |
| 3029 | $section = $1; | ||
| 3030 | $contents = $2; | ||
| 3031 | if ($contents ne "") { | ||
| 3032 | $contents .= "\n"; | ||
| 3033 | dump_section($file, $section, xml_escape($contents)); | ||
| 3034 | $section = $section_default; | ||
| 3035 | $contents = ""; | ||
| 3036 | } | ||
| 3037 | } elsif (/$doc_inline_start/) { | ||
| 3028 | $state = STATE_INLINE; | 3038 | $state = STATE_INLINE; |
| 3029 | $inline_doc_state = STATE_INLINE_NAME; | 3039 | $inline_doc_state = STATE_INLINE_NAME; |
| 3030 | } elsif ($decl_type eq 'function') { | 3040 | } elsif ($decl_type eq 'function') { |
