> -----Original Message----- > From: Intel-wired-lan <[email protected]> On Behalf > Of Mauro Carvalho Chehab > Sent: Thursday, January 29, 2026 9:08 AM > To: Jonathan Corbet <[email protected]>; Linux Doc Mailing List <linux- > [email protected]> > Cc: Mauro Carvalho Chehab <[email protected]>; > [email protected]; [email protected]; linux- > [email protected]; [email protected]; > [email protected]; Mauro Carvalho Chehab <[email protected]>; > Randy Dunlap <[email protected]> > Subject: [Intel-wired-lan] [PATCH v3 13/30] docs: kdoc_parser: add > support for LIST_HEAD > > Convert LIST_HEAD into struct list_head when handling its prototype. > > Signed-off-by: Mauro Carvalho Chehab <[email protected]> > Acked-by: Randy Dunlap <[email protected]> > Tested-by: Randy Dunlap <[email protected]> > --- > tools/lib/python/kdoc/kdoc_parser.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/lib/python/kdoc/kdoc_parser.py > b/tools/lib/python/kdoc/kdoc_parser.py > index 92b550189988..33710c4be145 100644 > --- a/tools/lib/python/kdoc/kdoc_parser.py > +++ b/tools/lib/python/kdoc/kdoc_parser.py > @@ -219,6 +219,7 @@ var_xforms = [ > (KernRe(r"__ro_after_init"), ""), > (KernRe(r'\s*__guarded_by\s*\([^\)]*\)', re.S), ""), > (KernRe(r'\s*__pt_guarded_by\s*\([^\)]*\)', re.S), ""), > + (KernRe(r"LIST_HEAD\(([\w_]+)\)"), r"struct list_head \1"), > (KernRe(r"(?://.*)$"), ""), > (KernRe(r"(?:/\*.*\*/)"), ""), > (KernRe(r";$"), ""), > -- > 2.52.0
Reviewed-by: Aleksandr Loktionov <[email protected]>
