Module Name: src
Committed By: msaitoh
Date: Wed Feb 6 07:20:13 UTC 2019
Modified Files:
src/sys/dev/pci: if_wm.c
Log Message:
I21[01]'s RAL size is not 15 but 16(== 82575's value). Same as other OSes.
To generate a diff of this commit:
cvs rdiff -u -r1.623 -r1.624 src/sys/dev/pci/if_wm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/if_wm.c
diff -u src/sys/dev/pci/if_wm.c:1.623 src/sys/dev/pci/if_wm.c:1.624
--- src/sys/dev/pci/if_wm.c:1.623 Thu Jan 31 15:30:23 2019
+++ src/sys/dev/pci/if_wm.c Wed Feb 6 07:20:13 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: if_wm.c,v 1.623 2019/01/31 15:30:23 msaitoh Exp $ */
+/* $NetBSD: if_wm.c,v 1.624 2019/02/06 07:20:13 msaitoh Exp $ */
/*
* Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc.
@@ -83,7 +83,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.623 2019/01/31 15:30:23 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.624 2019/02/06 07:20:13 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_net_mpsafe.h"
@@ -3641,6 +3641,8 @@ wm_rar_count(struct wm_softc *sc)
size = WM_RAL_TABSIZE_PCH_LPT;
break;
case WM_T_82575:
+ case WM_T_I210:
+ case WM_T_I211:
size = WM_RAL_TABSIZE_82575;
break;
case WM_T_82576: