diff mbox series

SH: Kconfig: Fix help text of CMDLINE_EXTEND

Message ID tencent_40B6A6E7C79AEEEFEC79A07DE00724909A05@qq.com (mailing list archive)
State New
Headers show
Series SH: Kconfig: Fix help text of CMDLINE_EXTEND | expand

Commit Message

谢致邦 (XIE Zhibang) March 28, 2025, 10:18 a.m. UTC
From: 谢致邦 (XIE Zhibang) <Yeking@Red54.com>

It is the bootloader arguments concatenated with the given string,
not the given string concatenated with the bootloader arguments.

Fixes: d724a9c9d572 ("sh: Allow for kernel command line concatenation.")
Signed-off-by: 谢致邦 (XIE Zhibang) <Yeking@Red54.com>
---
 arch/sh/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index 89185af7bcc9..81e5e205416e 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -727,8 +727,8 @@  config CMDLINE_OVERWRITE
 config CMDLINE_EXTEND
 	bool "Extend bootloader kernel arguments"
 	help
-	  Given string will be concatenated with arguments passed in
-	  by a bootloader.
+	  Arguments passed in by a bootloader will be concatenated
+	  with given string.
 
 config CMDLINE_FROM_BOOTLOADER
 	bool "Use bootloader kernel arguments"