Skip to content

Commit 06cd6d6

Browse files
David Rivshindavem330
authored andcommitted
drivers: net: cpsw: use of_phy_connect() in fixed-link case
If a fixed-link DT subnode is used, the phy_device was looked up so that a PHY ID string could be constructed and passed to phy_connect(). This is not necessary, as the device_node can be passed directly to of_phy_connect() instead. This reuses the same codepath as if the phy-handle DT property was used. Signed-off-by: David Rivshin <drivshin@allworx.com> Tested-by: Nicolas Chauvet <kwizart@gmail.com> Tested-by: Andrew Goodbody <andrew.goodbody@cambrionix.com> Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com> Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent a5d2cb3 commit 06cd6d6

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

drivers/net/ethernet/ti/cpsw.c

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2048,22 +2048,13 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
20482048
"slave[%d] using phy-handle=\"%s\"\n",
20492049
i, slave_data->phy_node->full_name);
20502050
} else if (of_phy_is_fixed_link(slave_node)) {
2051-
struct device_node *phy_node;
2052-
struct phy_device *phy_dev;
2053-
20542051
/* In the case of a fixed PHY, the DT node associated
20552052
* to the PHY is the Ethernet MAC DT node.
20562053
*/
20572054
ret = of_phy_register_fixed_link(slave_node);
20582055
if (ret)
20592056
return ret;
2060-
phy_node = of_node_get(slave_node);
2061-
phy_dev = of_phy_find_device(phy_node);
2062-
if (!phy_dev)
2063-
return -ENODEV;
2064-
snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2065-
PHY_ID_FMT, phy_dev->mdio.bus->id,
2066-
phy_dev->mdio.addr);
2057+
slave_data->phy_node = of_node_get(slave_node);
20672058
} else if (parp) {
20682059
u32 phyid;
20692060
struct device_node *mdio_node;

0 commit comments

Comments
 (0)