Skip to content

Commit 1af6ab3

Browse files
robherringShawn Guo
authored andcommitted
ARM: dts: fsl: Fix improperly quoted stdout-path values
A quoted label reference doesn't expand to the node path and is taken as a literal string. Dropping the quotes can fix this unless the baudrate string is appended in which case we have to use the alias. At least on VF610, the problem was masked by setting the console in bootargs. Use the alias syntax with baudrate parameter so we can drop setting the console in bootargs. Cc: Shawn Guo <shawnguo@kernel.org> Cc: Sascha Hauer <s.hauer@pengutronix.de> Cc: Pengutronix Kernel Team <kernel@pengutronix.de> Cc: NXP Linux Team <linux-imx@nxp.com> Cc: Mark Rutland <mark.rutland@arm.com> Reviewed-by: Fabio Estevam <festevam@gmail.com> Reviewed-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent 438ad09 commit 1af6ab3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

arch/arm/boot/dts/imx53-ppd.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
};
5656

5757
chosen {
58-
stdout-path = "&uart1:115200n8";
58+
stdout-path = "serial0:115200n8";
5959
};
6060

6161
memory@70000000 {

arch/arm/boot/dts/vf610m4-colibri.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
compatible = "fsl,vf610m4";
5151

5252
chosen {
53-
bootargs = "console=ttyLP2,115200 clk_ignore_unused init=/linuxrc rw";
54-
stdout-path = "&uart2";
53+
bootargs = "clk_ignore_unused init=/linuxrc rw";
54+
stdout-path = "serial2:115200";
5555
};
5656

5757
memory@8c000000 {

0 commit comments

Comments
 (0)