diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2017-06-08 18:20:58 +1000 |
---|---|---|
committer | Nathan Rossi <nathan@nathanrossi.com> | 2017-06-08 23:03:05 +1000 |
commit | 2371ecf0a0ad37cb775d4c09e89a1e70ab8f347a (patch) | |
tree | 42c2ee9d165fa12e2bdae73142af4668b42f326c | |
parent | a8659ca0967e6789930bff776d98d67c5a297f84 (diff) | |
download | meta-xilinx-2371ecf0a0ad37cb775d4c09e89a1e70ab8f347a.tar.gz |
zybo-linux-bd-zynq7: Change gem0 phy to match kernel definition
Change the device tree for the gem0 phy to match that of the kernel
device tree for ZYBO. This removes the compatible string and uses the
phy address of 0 (broadcast). This lets the kernel auto detect the phy
since there are no other devices on the MDIO bus for gem0.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r-- | recipes-bsp/device-tree/files/zybo-linux-bd-zynq7/zybo-linux-bd-zynq7.dts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/recipes-bsp/device-tree/files/zybo-linux-bd-zynq7/zybo-linux-bd-zynq7.dts b/recipes-bsp/device-tree/files/zybo-linux-bd-zynq7/zybo-linux-bd-zynq7.dts index 79deba49..19654392 100644 --- a/recipes-bsp/device-tree/files/zybo-linux-bd-zynq7/zybo-linux-bd-zynq7.dts +++ b/recipes-bsp/device-tree/files/zybo-linux-bd-zynq7/zybo-linux-bd-zynq7.dts | |||
@@ -127,10 +127,9 @@ | |||
127 | phy-handle = <&phy0>; | 127 | phy-handle = <&phy0>; |
128 | phy-mode = "rgmii-id"; | 128 | phy-mode = "rgmii-id"; |
129 | local-mac-address = []; | 129 | local-mac-address = []; |
130 | phy0: phy@1 { | 130 | phy0: phy@0 { |
131 | compatible = "realtek,rtl8211e"; | ||
132 | device_type = "ethernet-phy"; | 131 | device_type = "ethernet-phy"; |
133 | reg = <1>; | 132 | reg = <0>; |
134 | }; | 133 | }; |
135 | }; | 134 | }; |
136 | 135 | ||