mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
net: tsec: Use dm_eth_phy_connect() directly for the DM case
Now that the fixed phy driver has been fully adapted to OF APIs, and dm_eth_phy_connect() already can handle the fixed phy, call dm_eth_phy_connect() directly in the DM tsec driver. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com> Message-Id: <20210216224804.3355044-4-olteanv@gmail.com> [bmeng: split from "net: mdio: teach dm_eth_phy_connect to connect to fixed PHY"] Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
ec3b97e11d
commit
3c56251f2b
1 changed files with 1 additions and 5 deletions
|
@ -707,11 +707,7 @@ static int init_phy(struct tsec_private *priv)
|
|||
tsec_configure_serdes(priv);
|
||||
|
||||
#if defined(CONFIG_DM_ETH) && defined(CONFIG_DM_MDIO)
|
||||
if (ofnode_valid(ofnode_find_subnode(dev_ofnode(priv->dev),
|
||||
"fixed-link")))
|
||||
phydev = phy_connect(NULL, 0, priv->dev, priv->interface);
|
||||
else
|
||||
phydev = dm_eth_phy_connect(priv->dev);
|
||||
phydev = dm_eth_phy_connect(priv->dev);
|
||||
#else
|
||||
phydev = phy_connect(priv->bus, priv->phyaddr, priv->dev,
|
||||
priv->interface);
|
||||
|
|
Loading…
Reference in a new issue