Commit 032f4700 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller

phy: use new helpers phy_set_bits/phy_clear_bits in phylib

Use new helpers phy_set_bits / phy_clear_bits in phylib.
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ac8322d8
...@@ -1660,13 +1660,13 @@ EXPORT_SYMBOL(genphy_config_init); ...@@ -1660,13 +1660,13 @@ EXPORT_SYMBOL(genphy_config_init);
int genphy_suspend(struct phy_device *phydev) int genphy_suspend(struct phy_device *phydev)
{ {
return phy_modify(phydev, MII_BMCR, 0, BMCR_PDOWN); return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
} }
EXPORT_SYMBOL(genphy_suspend); EXPORT_SYMBOL(genphy_suspend);
int genphy_resume(struct phy_device *phydev) int genphy_resume(struct phy_device *phydev)
{ {
return phy_modify(phydev, MII_BMCR, BMCR_PDOWN, 0); return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
} }
EXPORT_SYMBOL(genphy_resume); EXPORT_SYMBOL(genphy_resume);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment