[PATCH] net: phy: fixed-link: read link parameters from devicetree
Sascha Hauer
s.hauer at pengutronix.de
Mon Feb 5 23:54:22 PST 2018
From: Lucas Stach <l.stach at pengutronix.de>
Implement the missing reading of the fixed link parameters from
the devicetree properties.
Signed-off-by: Lucas Stach <l.stach at pengutronix.de>
---
drivers/net/phy/phy.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 2b8fa63c06..42dcad9069 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -309,8 +309,13 @@ static struct phy_device *of_phy_register_fixed_link(struct device_node *np,
phydev->dev.parent = &edev->dev;
phydev->registered = 1;
- phydev->speed = 1000;
- phydev->duplex = 1;
+ phydev->link = 1;
+
+ if (of_property_read_u32(np, "speed", &phydev->speed))
+ return NULL;
+ phydev->duplex = of_property_read_bool(np,"full-duplex");
+ phydev->pause = of_property_read_bool(np, "pause");
+ phydev->asym_pause = of_property_read_bool(np, "asym-pause");
return phydev;
}
--
2.15.1
More information about the barebox
mailing list