diff options
author | Anton Blanchard <anton@samba.org> | 2014-09-17 14:39:36 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-10-02 17:33:55 +1000 |
commit | 3e47d1474c2b4099f0fadd12a6553fdb2e8feaae (patch) | |
tree | 8d7dee7104d3198cc7ca3d2789a0e0b8846f83ca /arch/powerpc/platforms/chrp/setup.c | |
parent | c7d1f6afe062d2dc4bb8109856519570f2fe3c13 (diff) | |
download | linux-3e47d1474c2b4099f0fadd12a6553fdb2e8feaae.tar.bz2 |
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>
Diffstat (limited to 'arch/powerpc/platforms/chrp/setup.c')
-rw-r--r-- | arch/powerpc/platforms/chrp/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/chrp/setup.c b/arch/powerpc/platforms/chrp/setup.c index 7044fd36197b..5b77b1919fd2 100644 --- a/arch/powerpc/platforms/chrp/setup.c +++ b/arch/powerpc/platforms/chrp/setup.c @@ -258,7 +258,7 @@ static void chrp_init_early(void) struct device_node *node; const char *property; - if (strstr(cmd_line, "console=")) + if (strstr(boot_command_line, "console=")) return; /* find the boot console from /chosen/stdout */ if (!of_chosen) |