From: John Crispin Date: Fri, 10 Oct 2014 21:14:29 +0000 (+0200) Subject: MIPS: lantiq: copy the commandline from the devicetree X-Git-Tag: v3.19-rc1~115^2~79 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=17327862f3107b3a2a8ddd586f6b488b3ae37a13;p=karo-tx-linux.git MIPS: lantiq: copy the commandline from the devicetree This is a regression caused by: commit afb46f7996e91aeb36e07bc92cf96e8045bec00e Author: Rob Herring Date: Wed Apr 2 19:07:24 2014 -0500 mips: ralink: convert to use unflatten_and_copy_device_tree Make the of init code reuse the cmdline defined inside the dts. Signed-off-by: John Crispin Patchwork: http://patchwork.linux-mips.org/patch/8048/ Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/lantiq/prom.c b/arch/mips/lantiq/prom.c index 968da50b5111..39ab3e786e59 100644 --- a/arch/mips/lantiq/prom.c +++ b/arch/mips/lantiq/prom.c @@ -77,6 +77,8 @@ void __init plat_mem_setup(void) * parsed resulting in our memory appearing */ __dt_setup_arch(__dtb_start); + + strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE); } void __init device_tree_init(void)