diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-29 11:31:06 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-29 11:31:06 -0400 |
commit | f3a0d2c1af630cc09a34c2159aa2dfa12b831762 (patch) | |
tree | 08a339ed98c9daeb06d4471ea6a01b42cae37842 /drivers/net/phy/phy.c | |
parent | 3d2f8bc673d8a8c0ecb2ba27d21f8c54152281ca (diff) | |
parent | b00bad9dc81ee0337761cc50443dffa22a6cdedf (diff) |
Merge tag 'xilinx-for-v2021.07-rc2' of https://source.denx.de/u-boot/custodians/u-boot-microblaze
Xilinx changes for v2021.07-rc2
xilinx:
- Enable saving variables based on bootmode
- Cleanup usb dfu setup and wire it up with usb bootmode
- Fix bootscript address logic
- Remove GD references (spi, Versal)
- Enable capsule update
clk:
- Small Kconfig fix
net:
- Fix gmii2rgmii bridge binding
usb:
- Propagate error (dfu gadget)
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r-- | drivers/net/phy/phy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index dcdef9e661d..ed197fa46d7 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -948,9 +948,9 @@ static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus, phy_interface_t interface) { struct phy_device *phydev = NULL; - ofnode node = dev_ofnode(dev); + ofnode node; - while (ofnode_valid(node)) { + ofnode_for_each_subnode(node, dev_ofnode(dev)) { node = ofnode_by_compatible(node, "xlnx,gmii-to-rgmii-1.0"); if (ofnode_valid(node)) { phydev = phy_device_create(bus, 0, |