Skip to content

Commit

Permalink
[PATCH] Dynamic kernel command-line: mips
Browse files Browse the repository at this point in the history
Rename saved_command_line into boot_command_line.

Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Alon Bar-Lev authored and Linus Torvalds committed Feb 12, 2007
1 parent f2a09e1 commit 43cd346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ static void __init arch_mem_init(char **cmdline_p)
print_memory_map();

strlcpy(command_line, arcs_cmdline, sizeof(command_line));
strlcpy(saved_command_line, command_line, COMMAND_LINE_SIZE);
strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE);

*cmdline_p = command_line;

Expand Down

0 comments on commit 43cd346

Please sign in to comment.