Skip to content

Commit 0fc7521

Browse files
hkallweitdavem330
authored andcommitted
r8169: fix rtl_hw_jumbo_disable for RTL8168evl
In referenced fix we removed the RTL8168e-specific jumbo config for RTL8168evl in rtl_hw_jumbo_enable(). We have to do the same in rtl_hw_jumbo_disable(). v2: fix referenced commit id Fixes: 14012c9 ("r8169: fix jumbo configuration for RTL8168evl") Signed-off-by: Heiner Kallweit <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 2dd5616 commit 0fc7521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/realtek/r8169_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3896,7 +3896,7 @@ static void rtl_hw_jumbo_disable(struct rtl8169_private *tp)
38963896
case RTL_GIGA_MAC_VER_27 ... RTL_GIGA_MAC_VER_28:
38973897
r8168dp_hw_jumbo_disable(tp);
38983898
break;
3899-
case RTL_GIGA_MAC_VER_31 ... RTL_GIGA_MAC_VER_34:
3899+
case RTL_GIGA_MAC_VER_31 ... RTL_GIGA_MAC_VER_33:
39003900
r8168e_hw_jumbo_disable(tp);
39013901
break;
39023902
default:

0 commit comments

Comments
 (0)