r8169: improve rtl8169_runtime_resume
authorHeiner Kallweit <hkallweit1@gmail.com>
Sat, 20 Jun 2020 20:39:35 +0000 (22:39 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 Jun 2020 23:26:02 +0000 (16:26 -0700)
Simplify rtl8169_runtime_resume() by calling rtl8169_resume().

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/realtek/r8169_main.c

index 1544882..7e2a62a 100644 (file)
@@ -4758,13 +4758,13 @@ static int __maybe_unused rtl8169_suspend(struct device *device)
        return 0;
 }
 
-static int __maybe_unused rtl8169_resume(struct device *device)
+static int rtl8169_resume(struct device *device)
 {
        struct rtl8169_private *tp = dev_get_drvdata(device);
 
        rtl_rar_set(tp, tp->dev->dev_addr);
 
-       if (netif_running(tp->dev))
+       if (tp->TxDescArray)
                rtl8169_up(tp);
 
        netif_device_attach(tp->dev);
@@ -4793,16 +4793,9 @@ static int rtl8169_runtime_resume(struct device *device)
 {
        struct rtl8169_private *tp = dev_get_drvdata(device);
 
-       rtl_rar_set(tp, tp->dev->dev_addr);
-
        __rtl8169_set_wol(tp, tp->saved_wolopts);
 
-       if (tp->TxDescArray)
-               rtl8169_up(tp);
-
-       netif_device_attach(tp->dev);
-
-       return 0;
+       return rtl8169_resume(device);
 }
 
 static int rtl8169_runtime_idle(struct device *device)