diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-08-19 14:28:38 +0200 |
---|---|---|
committer | Yoshinori Sato <ysato@users.sourceforge.jp> | 2020-08-24 12:35:00 +0900 |
commit | 35b34568912cb19c53b83d6daba96fe960941279 (patch) | |
tree | f4c15d13631773a2775c4ca964505e75ccde9981 /arch/h8300/boot | |
parent | 9d48776fc609e434736e5cb114830d7e0b843739 (diff) | |
download | linux-next-35b34568912cb19c53b83d6daba96fe960941279.tar.gz |
h8300: dts: Fix /chosen:stdout-path
arch/h8300/boot/dts/h8s_sim.dts:11.3-25: Warning (chosen_node_stdout_path): /chosen:stdout-path: property is not a string
arch/h8300/boot/dts/h8300h_sim.dts:11.3-25: Warning (chosen_node_stdout_path): /chosen:stdout-path: property is not a string
Drop the angle brackets to fix this.
A similar fix was already applied to arch/h8300/boot/dts/edosk2674.dts
in commit 780ffcd51cb28717 ("h8300: register address fix").
Fixes: 38d6bded13084d50 ("h8300: devicetree source")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to 'arch/h8300/boot')
-rw-r--r-- | arch/h8300/boot/dts/h8300h_sim.dts | 2 | ||||
-rw-r--r-- | arch/h8300/boot/dts/h8s_sim.dts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/h8300/boot/dts/h8300h_sim.dts b/arch/h8300/boot/dts/h8300h_sim.dts index 595398b9d018..e1d4d9b7f6b4 100644 --- a/arch/h8300/boot/dts/h8300h_sim.dts +++ b/arch/h8300/boot/dts/h8300h_sim.dts @@ -8,7 +8,7 @@ chosen { bootargs = "earlyprintk=h8300-sim"; - stdout-path = <&sci0>; + stdout-path = &sci0; }; aliases { serial0 = &sci0; diff --git a/arch/h8300/boot/dts/h8s_sim.dts b/arch/h8300/boot/dts/h8s_sim.dts index 932cc3c5a81b..4848e40e607e 100644 --- a/arch/h8300/boot/dts/h8s_sim.dts +++ b/arch/h8300/boot/dts/h8s_sim.dts @@ -8,7 +8,7 @@ chosen { bootargs = "earlyprintk=h8300-sim"; - stdout-path = <&sci0>; + stdout-path = &sci0; }; aliases { serial0 = &sci0; |