summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan.rossi@xilinx.com>2013-11-19 11:16:07 +1000
committerNathan Rossi <nathan.rossi@xilinx.com>2013-11-19 11:59:25 +1000
commita573551a42e2f4c8efa82db90f938b10e62a3971 (patch)
treed23940b5f50e8b7301e9e89db086b1eb9a2cda82
parentdf2ad45105036f5cf3d75bf26abbf013ec0f4090 (diff)
downloadmeta-xilinx-a573551a42e2f4c8efa82db90f938b10e62a3971.tar.gz
boards/zedboard: Fix Ethernet PHY dts node
* The Ethernet PHY on the ZedBoard is not guaranteed to be on address 7, instead use the phy broadcast address of 0 which is acceptable as no other devices are on the MDIO bus for the ZedBoard. Reported-by: Philip Balister <philip@balister.org> Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r--conf/machine/boards/zedboard/zedboard-zynq7.dtsi6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/boards/zedboard/zedboard-zynq7.dtsi b/conf/machine/boards/zedboard/zedboard-zynq7.dtsi
index 9849226a..af5c8b0e 100644
--- a/conf/machine/boards/zedboard/zedboard-zynq7.dtsi
+++ b/conf/machine/boards/zedboard/zedboard-zynq7.dtsi
@@ -14,10 +14,10 @@
14 phy-handle = <&phy0>; 14 phy-handle = <&phy0>;
15 phy-mode = "rgmii-id"; 15 phy-mode = "rgmii-id";
16 mdio { 16 mdio {
17 phy0: phy@7 { 17 phy0: phy@0 {
18 compatible = "marvell,88e1510"; 18 compatible = "marvell,88e1518";
19 device_type = "ethernet-phy"; 19 device_type = "ethernet-phy";
20 reg = <7>; 20 reg = <0>;
21 } ; 21 } ;
22 } ; 22 } ;
23 } ; 23 } ;