mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
net: pch_gbe: Switch to new U-Boot PHY API
Use new U-Boot phy_connect() API which also supports fixed PHYs. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
This commit is contained in:
parent
8869a8883b
commit
8f5abff522
1 changed files with 1 additions and 4 deletions
|
@ -414,16 +414,13 @@ static int pch_gbe_phy_init(struct udevice *dev)
|
|||
struct pch_gbe_priv *priv = dev_get_priv(dev);
|
||||
struct eth_pdata *plat = dev_get_plat(dev);
|
||||
struct phy_device *phydev;
|
||||
int mask = 0xffffffff;
|
||||
|
||||
phydev = phy_find_by_mask(priv->bus, mask);
|
||||
phydev = phy_connect(priv->bus, -1, dev, plat->phy_interface);
|
||||
if (!phydev) {
|
||||
printf("pch_gbe: cannot find the phy\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
phy_connect_dev(phydev, dev, plat->phy_interface);
|
||||
|
||||
phydev->supported &= PHY_GBIT_FEATURES;
|
||||
phydev->advertising = phydev->supported;
|
||||
|
||||
|
|
Loading…
Reference in a new issue