Unverified Commit db9fd9d1 authored by Chen-Yu Tsai's avatar Chen-Yu Tsai Committed by Maxime Ripard
Browse files

ARM: dts: sun8i: h3: bpi-m2-plus: Fix address for external RGMII Ethernet PHY



The external RTL8211E RGMII Ethernet PHY is configured via external
resistors to use the address 0x1. The 0x0 address is a broadcast address
for this family of PHYs, and should not be used explicitly.

Fixes: 8c7ba536 ("ARM: sun8i: bananapi-m2-plus: Enable dwmac-sun8i")
Fixes: 4904337f ("ARM: dts: sunxi: Restore EMAC changes (boards)")
Acked-by: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: default avatarChen-Yu Tsai <wens@csie.org>
parent 6c700289
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -140,7 +140,7 @@
&external_mdio {
&external_mdio {
	ext_rgmii_phy: ethernet-phy@1 {
	ext_rgmii_phy: ethernet-phy@1 {
		compatible = "ethernet-phy-ieee802.3-c22";
		compatible = "ethernet-phy-ieee802.3-c22";
		reg = <0>;
		reg = <1>;
	};
	};
};
};