From: Siva Durga Prasad Paladugu Date: Wed, 20 Mar 2019 11:19:47 +0000 (+0530) Subject: net: phy: ti: Use ofnode api to read phy property X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3aa57bd9e22538c7897538a2d9e275fd0687318e;p=thirdparty%2Fu-boot.git net: phy: ti: Use ofnode api to read phy property Fix incorrect read of phy property "ti,6-wire-mode" by using ofnode api instead of dev read. All other phy properties in of_init() routine were also read using ofnode APIs. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/drivers/net/phy/ti.c b/drivers/net/phy/ti.c index 97b729e11cd..f3fe21452c7 100644 --- a/drivers/net/phy/ti.c +++ b/drivers/net/phy/ti.c @@ -261,7 +261,7 @@ static int dp83867_of_init(struct phy_device *phydev) /* * 6-wire mode enables differential SGMII clock to MAC */ - if (dev_read_bool(phydev->dev, "ti,6-wire-mode")) + if (ofnode_read_bool(node, "ti,6-wire-mode")) dp83867->wiremode_6 = true; /* Clock output selection if muxing property is set */