Commit fccec10b authored by Stanislaw Gruszka's avatar Stanislaw Gruszka Committed by David S. Miller

r8169: (re)init phy on resume

Fix switching device to low-speed mode after resume reported in:
https://bugzilla.redhat.com/show_bug.cgi?id=502974Reported-and-tested-by: default avatarLaurentiu Badea <bugzilla-redhat@wotevah.com>
Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 323bb685
...@@ -4824,6 +4824,9 @@ static int rtl8169_resume(struct device *device) ...@@ -4824,6 +4824,9 @@ static int rtl8169_resume(struct device *device)
{ {
struct pci_dev *pdev = to_pci_dev(device); struct pci_dev *pdev = to_pci_dev(device);
struct net_device *dev = pci_get_drvdata(pdev); struct net_device *dev = pci_get_drvdata(pdev);
struct rtl8169_private *tp = netdev_priv(dev);
rtl8169_init_phy(dev, tp);
if (netif_running(dev)) if (netif_running(dev))
__rtl8169_resume(dev); __rtl8169_resume(dev);
...@@ -4864,6 +4867,8 @@ static int rtl8169_runtime_resume(struct device *device) ...@@ -4864,6 +4867,8 @@ static int rtl8169_runtime_resume(struct device *device)
tp->saved_wolopts = 0; tp->saved_wolopts = 0;
spin_unlock_irq(&tp->lock); spin_unlock_irq(&tp->lock);
rtl8169_init_phy(dev, tp);
__rtl8169_resume(dev); __rtl8169_resume(dev);
return 0; return 0;
......
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