]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
r8169: add missing RX enabling for WoL on RTL8125
authorHeiner Kallweit <hkallweit1@gmail.com>
Fri, 6 Dec 2019 22:27:15 +0000 (23:27 +0100)
committerSeth Forshee <seth.forshee@canonical.com>
Mon, 6 Jan 2020 13:42:38 +0000 (07:42 -0600)
BugLink: https://bugs.launchpad.net/bugs/1858426
[ Upstream commit 00222d1394104f0fd6c01ca9f578afec9e0f148b ]

RTL8125 also requires to enable RX for WoL.

v2: add missing Fixes tag

Fixes: f1bce4ad2f1c ("r8169: add support for RTL8125")
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/net/ethernet/realtek/r8169_main.c

index 235d51ea4d3979565ba6a0617c77251ef7a866dc..4fe0977d01fa200dda63efe688a88f3fca91b440 100644 (file)
@@ -3920,7 +3920,7 @@ static void rtl_wol_suspend_quirk(struct rtl8169_private *tp)
        case RTL_GIGA_MAC_VER_32:
        case RTL_GIGA_MAC_VER_33:
        case RTL_GIGA_MAC_VER_34:
-       case RTL_GIGA_MAC_VER_37 ... RTL_GIGA_MAC_VER_51:
+       case RTL_GIGA_MAC_VER_37 ... RTL_GIGA_MAC_VER_61:
                RTL_W32(tp, RxConfig, RTL_R32(tp, RxConfig) |
                        AcceptBroadcast | AcceptMulticast | AcceptMyPhys);
                break;