diff options
author | Chen-Yu Tsai <wens@csie.org> | 2018-08-30 04:09:24 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@bootlin.com> | 2018-09-29 09:57:46 -0400 |
commit | db9fd9d13e30fc67737ac9893a82e6b095e85a64 (patch) | |
tree | 1c8c3cf4a8bcf6150fa5bbd4d8b01f8ad1d0a9c2 | |
parent | 6c700289a3e84d5d3f2a95cf27732a7f7fce105b (diff) |
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: 8c7ba536e709 ("ARM: sun8i: bananapi-m2-plus: Enable dwmac-sun8i")
Fixes: 4904337fe34f ("ARM: dts: sunxi: Restore EMAC changes (boards)")
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
-rw-r--r-- | arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts b/arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts index 30540dc8e0c5..bdda0d99128e 100644 --- a/arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts +++ b/arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts | |||
@@ -140,7 +140,7 @@ | |||
140 | &external_mdio { | 140 | &external_mdio { |
141 | ext_rgmii_phy: ethernet-phy@1 { | 141 | ext_rgmii_phy: ethernet-phy@1 { |
142 | compatible = "ethernet-phy-ieee802.3-c22"; | 142 | compatible = "ethernet-phy-ieee802.3-c22"; |
143 | reg = <0>; | 143 | reg = <1>; |
144 | }; | 144 | }; |
145 | }; | 145 | }; |
146 | 146 | ||