From: Shaokun Zhang Date: Sat, 9 May 2020 08:33:55 +0000 (+0800) Subject: bootconfig: Fix kernel message mentioning CONFIG_BOOT_CONFIG X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=36c6aa26e9ca393b31af166965cf51536176703b;p=linux.git bootconfig: Fix kernel message mentioning CONFIG_BOOT_CONFIG Fix up one typo: CONFIG_BOOTCONFIG -> CONFIG_BOOT_CONFIG Cc: Steven Rostedt Cc: Masami Hiramatsu Signed-off-by: Shaokun Zhang Acked-by: Masami Hiramatsu Signed-off-by: Jiri Kosina --- diff --git a/init/main.c b/init/main.c index ae78fb68d2310..92773a5daf8d9 100644 --- a/init/main.c +++ b/init/main.c @@ -467,7 +467,7 @@ static void __init setup_boot_config(const char *cmdline) static int __init warn_bootconfig(char *str) { - pr_warn("WARNING: 'bootconfig' found on the kernel command line but CONFIG_BOOTCONFIG is not set.\n"); + pr_warn("WARNING: 'bootconfig' found on the kernel command line but CONFIG_BOOT_CONFIG is not set.\n"); return 0; } early_param("bootconfig", warn_bootconfig);