aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/sphinx/kernel_include.py
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2025-08-22 16:19:27 +0200
committerJonathan Corbet <corbet@lwn.net>2025-08-29 15:54:43 -0600
commit67faed5d213d87f3b5bdfc78a12d1d9d3e7aac46 (patch)
tree553fa92f66cac2f3e0834c6711708b4363d41aa9 /Documentation/sphinx/kernel_include.py
parentdocs: kernel_include.py: move range logic to a separate function (diff)
downloadlinux-67faed5d213d87f3b5bdfc78a12d1d9d3e7aac46.tar.gz
linux-67faed5d213d87f3b5bdfc78a12d1d9d3e7aac46.zip
docs: kernel_include.py: remove range restriction for gen docs
Originally, parse-readers were generating an output where the first two lines were setting a literal block. The script now gets only the actual parsed data without that, so it is now safe to allow start-line and end-line parameters to be handled. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/5dff693860a6a3faade15c24abdc380f09db468d.1755872208.git.mchehab+huawei@kernel.org
Diffstat (limited to 'Documentation/sphinx/kernel_include.py')
-rwxr-xr-xDocumentation/sphinx/kernel_include.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Documentation/sphinx/kernel_include.py b/Documentation/sphinx/kernel_include.py
index c5f4f34e22cb..4cdd1c77982e 100755
--- a/Documentation/sphinx/kernel_include.py
+++ b/Documentation/sphinx/kernel_include.py
@@ -122,9 +122,6 @@ class KernelInclude(Include):
exceptions_file = os.path.join(source_dir, self.options['exception-file'])
parser.process_exceptions(exceptions_file)
- if self.options.get("start-line") or self.options.get("end-line"):
- raise self.severe('generate-cross-refs can\'t be used with "start-line" or "end-line"')
-
# Store references on a symbol dict to be used at check time
if 'warn-broken' in self.options:
env._xref_files.add(path)
@@ -209,9 +206,6 @@ class KernelInclude(Include):
title = os.path.basename(path)
- if startline or endline:
- raise self.severe('generate-cross-refs can\'t be used together with "start-line" or "end-line"')
-
if "code" not in self.options:
rawtext = ".. parsed-literal::\n\n" + rawtext
else: