Lines Matching refs:phydev
16 int fixedphy_probe(struct phy_device *phydev) in fixedphy_probe() argument
19 int ofnode = phydev->addr; in fixedphy_probe()
35 phydev->priv = priv; in fixedphy_probe()
43 phydev->flags |= PHY_FLAG_BROKEN_RESET; in fixedphy_probe()
48 int fixedphy_startup(struct phy_device *phydev) in fixedphy_startup() argument
50 struct fixed_link *priv = phydev->priv; in fixedphy_startup()
52 phydev->asym_pause = priv->asym_pause; in fixedphy_startup()
53 phydev->pause = priv->pause; in fixedphy_startup()
54 phydev->duplex = priv->duplex; in fixedphy_startup()
55 phydev->speed = priv->link_speed; in fixedphy_startup()
56 phydev->link = 1; in fixedphy_startup()
61 int fixedphy_shutdown(struct phy_device *phydev) in fixedphy_shutdown() argument