mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-07 02:19:54 +00:00
scripts/kernel-doc.py: implement support for -no-doc-sections
The venerable kernel-doc Perl script has a number of options that aren't properly documented. Among them, there is -no-doc-sections, which is used by the Sphinx extension. Implement support for it. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/06b18a32142b44d5ba8b41ac64a76c02b03b4969.1744106242.git.mchehab+huawei@kernel.org
This commit is contained in:
committed by
Jonathan Corbet
parent
799b0d2a2a
commit
0873e55433
@@ -238,7 +238,7 @@ class KernelFiles():
|
||||
return self.out_style.msg(fname, name, arg)
|
||||
|
||||
def msg(self, enable_lineno=False, export=False, internal=False,
|
||||
symbol=None, nosymbol=None):
|
||||
symbol=None, nosymbol=None, no_doc_sections=False):
|
||||
"""
|
||||
Interacts over the kernel-doc results and output messages,
|
||||
returning kernel-doc markups on each interaction
|
||||
@@ -257,7 +257,8 @@ class KernelFiles():
|
||||
self.out_style.set_config(self.config)
|
||||
|
||||
self.out_style.set_filter(export, internal, symbol, nosymbol,
|
||||
function_table, enable_lineno)
|
||||
function_table, enable_lineno,
|
||||
no_doc_sections)
|
||||
|
||||
for fname, arg_tuple in self.results:
|
||||
msg = ""
|
||||
|
||||
Reference in New Issue
Block a user