Skip to content

Commit 3e1ad40

Browse files
committed
doc: don't use deprecated "---help---" markers in target docs
I'm not convinced the script makes useful automaed help lines anyway, but since we're trying to deprecate the use of "---help---" in Kconfig files, let's fix the doc example code too. See commit a7f7f62 ("treewide: replace '---help---' in Kconfig files with 'help'") Cc: Masahiro Yamada <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 6adc19f commit 3e1ad40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/target/tcm_mod_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,8 @@ def tcm_mod_build_kconfig(fabric_mod_dir_var, fabric_mod_name):
568568
buf += " tristate \"" + fabric_mod_name.upper() + " fabric module\"\n"
569569
buf += " depends on TARGET_CORE && CONFIGFS_FS\n"
570570
buf += " default n\n"
571-
buf += " ---help---\n"
572-
buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n"
571+
buf += " help\n"
572+
buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n"
573573

574574
ret = p.write(buf)
575575
if ret:

0 commit comments

Comments
 (0)