@@ -1523,40 +1523,6 @@ int phy_eee_clk_stop_enable(struct phy_device *phydev)
}
EXPORT_SYMBOL_GPL(phy_eee_clk_stop_enable);
-/**
- * phy_init_eee - init and check the EEE feature
- * @phydev: target phy_device struct
- * @clk_stop_enable: PHY may stop the clock during LPI
- *
- * Description: it checks if the Energy-Efficient Ethernet (EEE)
- * is supported by looking at the MMD registers 3.20 and 7.60/61
- * and it programs the MMD register 3.0 setting the "Clock stop enable"
- * bit if required.
- */
-int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
-{
- int ret;
-
- if (!phydev->drv)
- return -EIO;
-
- ret = genphy_c45_eee_is_active(phydev, NULL, NULL, NULL);
- if (ret < 0)
- return ret;
- if (!ret)
- return -EPROTONOSUPPORT;
-
- if (clk_stop_enable)
- /* Configure the PHY to stop receiving xMII
- * clock while it is signaling LPI.
- */
- ret = phy_set_bits_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1,
- MDIO_PCS_CTRL1_CLKSTOP_EN);
-
- return ret < 0 ? ret : 0;
-}
-EXPORT_SYMBOL(phy_init_eee);
-
/**
* phy_get_eee_err - report the EEE wake error count
* @phydev: target phy_device struct
@@ -1847,7 +1847,6 @@ int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask);
int phy_unregister_fixup_for_id(const char *bus_id);
int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask);
-int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable);
int phy_eee_clk_stop_enable(struct phy_device *phydev);
int phy_get_eee_err(struct phy_device *phydev);
int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data);
There are no users left of phy_init_eee(), and it is often wrongly used. So remove it. Signed-off-by: Andrew Lunn <andrew@lunn.ch> --- drivers/net/phy/phy.c | 34 ---------------------------------- include/linux/phy.h | 1 - 2 files changed, 35 deletions(-)