diff options
author | Alon Bar-Lev <alon.barlev@gmail.com> | 2007-02-12 03:54:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:38 -0500 |
commit | 187959f31e92cde16b274f0b61dfaca3a8b14089 (patch) | |
tree | aef557aba043030d437f1f0e00c76341215b513f /arch/m68k/kernel/setup.c | |
parent | 3561794d80843588ed8b47fffb20e2dcd9c40ff3 (diff) |
[PATCH] Dynamic kernel command-line: m68k
Rename saved_command_line into boot_command_line.
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k/kernel/setup.c')
-rw-r--r-- | arch/m68k/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/kernel/setup.c b/arch/m68k/kernel/setup.c index 9af3ee0e555d..42b8fd09ea8f 100644 --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c | |||
@@ -256,7 +256,7 @@ void __init setup_arch(char **cmdline_p) | |||
256 | init_mm.brk = (unsigned long) &_end; | 256 | init_mm.brk = (unsigned long) &_end; |
257 | 257 | ||
258 | *cmdline_p = m68k_command_line; | 258 | *cmdline_p = m68k_command_line; |
259 | memcpy(saved_command_line, *cmdline_p, CL_SIZE); | 259 | memcpy(boot_command_line, *cmdline_p, CL_SIZE); |
260 | 260 | ||
261 | /* Parse the command line for arch-specific options. | 261 | /* Parse the command line for arch-specific options. |
262 | * For the m68k, this is currently only "debug=xxx" to enable printing | 262 | * For the m68k, this is currently only "debug=xxx" to enable printing |