bootconfig: Fix kernel message mentioning CONFIG_BOOT_CONFIG
authorShaokun Zhang <zhangshaokun@hisilicon.com>
Sat, 9 May 2020 08:33:55 +0000 (16:33 +0800)
committerJiri Kosina <jkosina@suse.cz>
Tue, 1 Sep 2020 12:21:55 +0000 (14:21 +0200)
Fix up one typo: CONFIG_BOOTCONFIG -> CONFIG_BOOT_CONFIG

Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
init/main.c

index ae78fb6..92773a5 100644 (file)
@@ -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);