diff options
Diffstat (limited to 'arch/x86_64/kernel/head64.c')
-rw-r--r-- | arch/x86_64/kernel/head64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/head64.c b/arch/x86_64/kernel/head64.c index cc230b93cd1c..be4bfb43d6dd 100644 --- a/arch/x86_64/kernel/head64.c +++ b/arch/x86_64/kernel/head64.c | |||
@@ -34,7 +34,7 @@ static void __init clear_bss(void) | |||
34 | #define OLD_CL_BASE_ADDR 0x90000 | 34 | #define OLD_CL_BASE_ADDR 0x90000 |
35 | #define OLD_CL_OFFSET 0x90022 | 35 | #define OLD_CL_OFFSET 0x90022 |
36 | 36 | ||
37 | extern char saved_command_line[]; | 37 | extern char __initdata boot_command_line[]; |
38 | 38 | ||
39 | static void __init copy_bootdata(char *real_mode_data) | 39 | static void __init copy_bootdata(char *real_mode_data) |
40 | { | 40 | { |
@@ -50,7 +50,7 @@ static void __init copy_bootdata(char *real_mode_data) | |||
50 | new_data = OLD_CL_BASE_ADDR + * (u16 *) OLD_CL_OFFSET; | 50 | new_data = OLD_CL_BASE_ADDR + * (u16 *) OLD_CL_OFFSET; |
51 | } | 51 | } |
52 | command_line = (char *) ((u64)(new_data)); | 52 | command_line = (char *) ((u64)(new_data)); |
53 | memcpy(saved_command_line, command_line, COMMAND_LINE_SIZE); | 53 | memcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); |
54 | } | 54 | } |
55 | 55 | ||
56 | void __init x86_64_start_kernel(char * real_mode_data) | 56 | void __init x86_64_start_kernel(char * real_mode_data) |