mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
docs: kdoc: remove a useless empty capture group
The is_define_proto case in dump_function() uses a regex with an empty capture group - () - that has no use; just take it out. Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
@@ -972,11 +972,11 @@ class KernelDoc:
|
||||
found = False
|
||||
|
||||
if is_define_proto:
|
||||
r = KernRe(r'^()(' + name + r')\s+')
|
||||
r = KernRe(r'^(' + name + r')\s+')
|
||||
|
||||
if r.search(prototype):
|
||||
return_type = ''
|
||||
declaration_name = r.group(2)
|
||||
declaration_name = r.group(1)
|
||||
func_macro = True
|
||||
|
||||
found = True
|
||||
|
||||
Reference in New Issue
Block a user