mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
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: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ac8322d806
commit
032f470081
@ -1660,13 +1660,13 @@ EXPORT_SYMBOL(genphy_config_init);
|
||||
|
||||
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);
|
||||
|
||||
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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user