Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci I21[01]'s RAL size is not 15 but 16(== 82575's v...



details:   https://anonhg.NetBSD.org/src/rev/51d3886368dc
branches:  trunk
changeset: 448623:51d3886368dc
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Feb 06 07:20:13 2019 +0000

description:
I21[01]'s RAL size is not 15 but 16(== 82575's value). Same as other OSes.

diffstat:

 sys/dev/pci/if_wm.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 1c8ee4308716 -r 51d3886368dc sys/dev/pci/if_wm.c
--- a/sys/dev/pci/if_wm.c       Wed Feb 06 05:33:41 2019 +0000
+++ b/sys/dev/pci/if_wm.c       Wed Feb 06 07:20:13 2019 +0000
@@ -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 @@
                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:



Home | Main Index | Thread Index | Old Index