arm64: dts: renesas: spider-cpu: Fix scif0/scif3 sort order
authorGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 4 Jul 2022 16:16:26 +0000 (18:16 +0200)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 5 Jul 2022 07:10:18 +0000 (09:10 +0200)
The scif0 nodes were accidentally inserted after the scif3 nodes,
breaking alphabetical sort order.

Fixes: 1614c8624a48b9c9 ("arm64: dts: renesas: spider-cpu: Enable SCIF0 on second connector")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/2fe0e782351c202ed009dcd658f4bceec8f3a56d.1656951240.git.geert+renesas@glider.be
arch/arm64/boot/dts/renesas/r8a779f0-spider-cpu.dtsi

index 81d178e..28fbf7b 100644 (file)
                function = "i2c4";
        };
 
-       scif3_pins: scif3 {
-               groups = "scif3_data", "scif3_ctrl";
-               function = "scif3";
-       };
-
        scif0_pins: scif0 {
                groups = "scif0_data", "scif0_ctrl";
                function = "scif0";
        };
 
+       scif3_pins: scif3 {
+               groups = "scif3_data", "scif3_ctrl";
+               function = "scif3";
+       };
+
        scif_clk_pins: scif_clk {
                groups = "scif_clk";
                function = "scif_clk";
        status = "okay";
 };
 
-&scif3 {
-       pinctrl-0 = <&scif3_pins>;
+&scif0 {
+       pinctrl-0 = <&scif0_pins>;
        pinctrl-names = "default";
 
        uart-has-rtscts;
        status = "okay";
 };
 
-&scif0 {
-       pinctrl-0 = <&scif0_pins>;
+&scif3 {
+       pinctrl-0 = <&scif3_pins>;
        pinctrl-names = "default";
 
        uart-has-rtscts;