summaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/phy_device.c
diff options
context:
space:
mode:
authorHeiner Kallweit2018-01-12 21:20:36 +0100
committerDavid S. Miller2018-01-16 18:25:10 +0100
commit032f4700814346ff935531a9dfa8ecfaeeb38c07 (patch)
tree435fea93fa29006e32c973692427c05e97747889 /drivers/net/phy/phy_device.c
parentphy: add helpers for setting/clearing bits in PHY registers (diff)
downloadkernel-qcow2-linux-032f4700814346ff935531a9dfa8ecfaeeb38c07.tar.gz
kernel-qcow2-linux-032f4700814346ff935531a9dfa8ecfaeeb38c07.tar.xz
kernel-qcow2-linux-032f4700814346ff935531a9dfa8ecfaeeb38c07.zip
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>
Diffstat (limited to 'drivers/net/phy/phy_device.c')
-rw-r--r--drivers/net/phy/phy_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index 6bd11a070ec8..b13eed21c87d 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -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);