diff options
author | 2024-12-13 08:28:25 -0700 | |
---|---|---|
committer | 2024-12-13 08:28:25 -0700 | |
commit | 93a07ad57fa805b762d16f0ae024c446a5f6f3f1 (patch) | |
tree | 5d11799e7f7b74e9fa37b3fe0f7b2d343eb9646e | |
parent | x86/Documentation: Elaborate Intel MID device list (diff) | |
parent | scripts/kernel-doc: Get -export option working again (diff) | |
download | wireguard-linux-93a07ad57fa805b762d16f0ae024c446a5f6f3f1.tar.xz wireguard-linux-93a07ad57fa805b762d16f0ae024c446a5f6f3f1.zip |
Merge branch 'docs-fixes' into docs-mw
Bring the kernel-doc fix into docs-mw as well.
-rwxr-xr-x | scripts/kernel-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index f66070176ba3..4ee843d3600e 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -267,7 +267,7 @@ my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)'; my $doc_inline_end = '^\s*\*/\s*$'; my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$'; my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;'; -my $export_symbol_ns = '^\s*EXPORT_SYMBOL_NS(_GPL)?\s*\(\s*(\w+)\s*,\s*\w+\)\s*;'; +my $export_symbol_ns = '^\s*EXPORT_SYMBOL_NS(_GPL)?\s*\(\s*(\w+)\s*,\s*"\S+"\)\s*;'; my $function_pointer = qr{([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)}; my $attribute = qr{__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)}i; |