powerpc: Remove powerpc specific cmd_line

There is no need for yet another copy of the command line, just
use boot_command_line like everyone else.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Anton Blanchard
2014-09-17 14:39:36 +10:00
zatwierdzone przez Michael Ellerman
rodzic c7d1f6afe0
commit 3e47d1474c
10 zmienionych plików z 12 dodań i 18 usunięć

Wyświetl plik

@@ -452,7 +452,7 @@ void __init hvc_vio_init_early(void)
return;
#endif
/* Check whether the user has requested a different console. */
if (!strstr(cmd_line, "console="))
if (!strstr(boot_command_line, "console="))
add_preferred_console("hvc", 0, NULL);
hvc_instantiate(0, 0, ops);
}