diff options
| author | Marek Vasut <[email protected]> | 2023-05-31 00:51:23 +0200 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2023-06-10 13:34:05 +0200 |
| commit | b9b04f8c5f66c39ffc24b68d2175c40faed56c9e (patch) | |
| tree | 3c113b66b8e204bd2212dee8e008fbfc58b1a492 /drivers | |
| parent | 8f5abff5221f42fe1478964f2fd4a19580c76f70 (diff) | |
net: sh_eth: Switch to new U-Boot PHY API
Use new U-Boot phy_connect() API which also supports fixed PHYs.
Signed-off-by: Marek Vasut <[email protected]>
Reviewed-by: Ramon Fried <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/sh_eth.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 8f162ca58fb..14f7fd1bcc0 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c @@ -601,14 +601,11 @@ static int sh_eth_phy_config(struct udevice *dev) int ret = 0; struct sh_eth_info *port_info = ð->port_info[eth->port]; struct phy_device *phydev; - int mask = 0xffffffff; - phydev = phy_find_by_mask(priv->bus, mask); + phydev = phy_connect(priv->bus, -1, dev, pdata->phy_interface); if (!phydev) return -ENODEV; - phy_connect_dev(phydev, dev, pdata->phy_interface); - port_info->phydev = phydev; phy_config(phydev); |
