Skip to content

Commit

Permalink
of: mdio: Refactor of_phy_find_device()
Browse files Browse the repository at this point in the history
Refactor of_phy_find_device() to use fwnode_phy_find_device().

Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com>
Acked-by: Grant Likely <grant.likely@arm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Calvin Johnson authored and David S. Miller committed Jun 11, 2021
1 parent 425775e commit 2d7b8bf
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions drivers/net/mdio/of_mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,18 +360,7 @@ EXPORT_SYMBOL(of_mdio_find_device);
*/
struct phy_device *of_phy_find_device(struct device_node *phy_np)
{
struct mdio_device *mdiodev;

mdiodev = of_mdio_find_device(phy_np);
if (!mdiodev)
return NULL;

if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
return to_phy_device(&mdiodev->dev);

put_device(&mdiodev->dev);

return NULL;
return fwnode_phy_find_device(of_fwnode_handle(phy_np));
}
EXPORT_SYMBOL(of_phy_find_device);

Expand Down

0 comments on commit 2d7b8bf

Please sign in to comment.