diff options
author | Mike Rapoport <rppt@linux.ibm.com> | 2018-11-07 18:47:13 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2018-11-07 15:39:06 -0700 |
commit | bfd228c73090e594efce24fa0f299272bef53c6d (patch) | |
tree | 0ee93ef7669ab17c97257bc853f18b35440472aa /scripts/kernel-doc | |
parent | 76dd3e7b6650ba5aed96347e685657f80590a7b6 (diff) | |
download | linux-bfd228c73090e594efce24fa0f299272bef53c6d.tar.gz linux-bfd228c73090e594efce24fa0f299272bef53c6d.tar.bz2 linux-bfd228c73090e594efce24fa0f299272bef53c6d.zip |
kernel-doc: extend $type_param to match members referenced by pointer
Currently, function parameter description can match '@type.member'
expressions but fails to match '@type->member'.
Extend the $type_param regex to allow matching both
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'scripts/kernel-doc')
-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 24d3550f7b45..f9f143145c4b 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc @@ -212,7 +212,7 @@ my $anon_struct_union = 0; my $type_constant = '\b``([^\`]+)``\b'; my $type_constant2 = '\%([-_\w]+)'; my $type_func = '(\w+)\(\)'; -my $type_param = '\@(\w*(\.\w+)*(\.\.\.)?)'; +my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)'; my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params my $type_env = '(\$\w+)'; my $type_enum = '\&(enum\s*([_\w]+))'; |