diff options
-rw-r--r-- | arch/arm/kernel/setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index b01a56a03ed8..baf5959d639a 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -118,7 +118,7 @@ EXPORT_SYMBOL(elf_platform); | |||
118 | 118 | ||
119 | static const char *cpu_name; | 119 | static const char *cpu_name; |
120 | static const char *machine_name; | 120 | static const char *machine_name; |
121 | static char __initdata command_line[COMMAND_LINE_SIZE]; | 121 | static char __initdata cmd_line[COMMAND_LINE_SIZE]; |
122 | 122 | ||
123 | static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE; | 123 | static char default_command_line[COMMAND_LINE_SIZE] __initdata = CONFIG_CMDLINE; |
124 | static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } }; | 124 | static union { char c[4]; unsigned long l; } endian_test __initdata = { { 'l', '?', '?', 'b' } }; |
@@ -707,9 +707,9 @@ void __init setup_arch(char **cmdline_p) | |||
707 | /* parse_early_param needs a boot_command_line */ | 707 | /* parse_early_param needs a boot_command_line */ |
708 | strlcpy(boot_command_line, from, COMMAND_LINE_SIZE); | 708 | strlcpy(boot_command_line, from, COMMAND_LINE_SIZE); |
709 | 709 | ||
710 | /* populate command_line too for later use, preserving boot_command_line */ | 710 | /* populate cmd_line too for later use, preserving boot_command_line */ |
711 | strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); | 711 | strlcpy(cmd_line, boot_command_line, COMMAND_LINE_SIZE); |
712 | *cmdline_p = command_line; | 712 | *cmdline_p = cmd_line; |
713 | 713 | ||
714 | parse_early_param(); | 714 | parse_early_param(); |
715 | 715 | ||