Skip to content

Commit b514fb2

Browse files
shesselbaJason Cooper
authored andcommitted
ARM: dts: kirkwood: fix phy-connection-type for Guruplug
Commit eeb8454 ("ARM: dts: kirkwood: set Guruplug phy-connection-type to rgmii-id") added phy-connection-type properties to ethernet PHY nodes. Actually, the property has to be set for the ethernet port node instead. Fix it by moving the corresponding properties to the correct nodes. Signed-off-by: Sebastian Hesselbarth <[email protected]> Link: https://lkml.kernel.org/r/1403555115-13111-1-git-send-email-sebastian.hesselbarth@gmail.com Fixes: eeb8454: ('ARM: dts: kirkwood: set Guruplug phy-connection-type to rgmii-id') Cc: <[email protected]> # v3.16+ Signed-off-by: Jason Cooper <[email protected]>
1 parent 52fcc56 commit b514fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/boot/dts/kirkwood-guruplug-server-plus.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,28 +105,28 @@
105105
compatible = "ethernet-phy-id0141.0cb0",
106106
"ethernet-phy-ieee802.3-c22";
107107
reg = <0>;
108-
phy-connection-type = "rgmii-id";
109108
};
110109

111110
ethphy1: ethernet-phy@1 {
112111
/* Marvell 88E1121R */
113112
compatible = "ethernet-phy-id0141.0cb0",
114113
"ethernet-phy-ieee802.3-c22";
115114
reg = <1>;
116-
phy-connection-type = "rgmii-id";
117115
};
118116
};
119117

120118
&eth0 {
121119
status = "okay";
122120
ethernet0-port@0 {
123121
phy-handle = <&ethphy0>;
122+
phy-connection-type = "rgmii-id";
124123
};
125124
};
126125

127126
&eth1 {
128127
status = "okay";
129128
ethernet1-port@0 {
130129
phy-handle = <&ethphy1>;
130+
phy-connection-type = "rgmii-id";
131131
};
132132
};

0 commit comments

Comments
 (0)