diff options
-rw-r--r-- | arch/um/include/user_util.h | 2 | ||||
-rw-r--r-- | arch/um/kernel/um_arch.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/include/user_util.h b/arch/um/include/user_util.h index 06625fefef3..0f63003a2a3 100644 --- a/arch/um/include/user_util.h +++ b/arch/um/include/user_util.h | |||
@@ -38,7 +38,7 @@ extern unsigned long long highmem; | |||
38 | 38 | ||
39 | extern char host_info[]; | 39 | extern char host_info[]; |
40 | 40 | ||
41 | extern char saved_command_line[]; | 41 | extern char __initdata boot_command_line[]; |
42 | 42 | ||
43 | extern unsigned long _stext, _etext, _sdata, _edata, __bss_start, _end; | 43 | extern unsigned long _stext, _etext, _sdata, _edata, __bss_start, _end; |
44 | extern unsigned long _unprotected_end; | 44 | extern unsigned long _unprotected_end; |
diff --git a/arch/um/kernel/um_arch.c b/arch/um/kernel/um_arch.c index 84e57f6da1d..668eba2d2e8 100644 --- a/arch/um/kernel/um_arch.c +++ b/arch/um/kernel/um_arch.c | |||
@@ -481,7 +481,7 @@ void __init setup_arch(char **cmdline_p) | |||
481 | atomic_notifier_chain_register(&panic_notifier_list, | 481 | atomic_notifier_chain_register(&panic_notifier_list, |
482 | &panic_exit_notifier); | 482 | &panic_exit_notifier); |
483 | paging_init(); | 483 | paging_init(); |
484 | strlcpy(saved_command_line, command_line, COMMAND_LINE_SIZE); | 484 | strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); |
485 | *cmdline_p = command_line; | 485 | *cmdline_p = command_line; |
486 | setup_hostinfo(); | 486 | setup_hostinfo(); |
487 | } | 487 | } |