aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2019-11-13 23:03:26 +0100
committerDavid S. Miller <davem@davemloft.net>2019-11-14 18:00:24 -0800
commitd0db136ffb59bfb8d66b45dba277191db6914f49 (patch)
tree7f750b8a0c2d79902326a35751b7bc9e5b6bde92 /drivers
parentibmveth: Detect unsupported packets before sending to the hypervisor (diff)
downloadlinux-dev-d0db136ffb59bfb8d66b45dba277191db6914f49.tar.xz
linux-dev-d0db136ffb59bfb8d66b45dba277191db6914f49.zip
r8169: use r8168d_modify_extpage in rtl8168f_config_eee_phy
Use r8168d_modify_extpage() also in rtl8168f_config_eee_phy() to simplify the code. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/realtek/r8169_main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c
index 9a21ac962c27..81a0c426a9a1 100644
--- a/drivers/net/ethernet/realtek/r8169_main.c
+++ b/drivers/net/ethernet/realtek/r8169_main.c
@@ -2324,11 +2324,7 @@ static void rtl8168f_config_eee_phy(struct rtl8169_private *tp)
{
struct phy_device *phydev = tp->phydev;
- phy_write(phydev, 0x1f, 0x0007);
- phy_write(phydev, 0x1e, 0x0020);
- phy_set_bits(phydev, 0x15, BIT(8));
- phy_write(phydev, 0x1f, 0x0000);
-
+ r8168d_modify_extpage(phydev, 0x0020, 0x15, 0, BIT(8));
r8168d_phy_param(phydev, 0x8b85, 0, BIT(13));
}