Module Name:    src
Committed By:   darran
Date:           Tue Mar 31 06:58:55 UTC 2009

Modified Files:
        src/sys/dev/pci: if_wm.c

Log Message:
Missed a small but important change to enable hardware VLAN support.


To generate a diff of this commit:
cvs rdiff -u -r1.171 -r1.172 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.171 src/sys/dev/pci/if_wm.c:1.172
--- src/sys/dev/pci/if_wm.c:1.171	Tue Mar 31 04:16:57 2009
+++ src/sys/dev/pci/if_wm.c	Tue Mar 31 06:58:55 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_wm.c,v 1.171 2009/03/31 04:16:57 darran Exp $	*/
+/*	$NetBSD: if_wm.c,v 1.172 2009/03/31 06:58:55 darran Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc.
@@ -79,7 +79,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.171 2009/03/31 04:16:57 darran Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.172 2009/03/31 06:58:55 darran Exp $");
 
 #include "bpfilter.h"
 #include "rnd.h"
@@ -1567,7 +1567,7 @@
 	 */
 	if (sc->sc_type >= WM_T_82543)
 		sc->sc_ethercom.ec_capabilities |=
-		    ETHERCAP_VLAN_MTU /* XXXJRT | ETHERCAP_VLAN_HWTAGGING */;
+		    ETHERCAP_VLAN_MTU | ETHERCAP_VLAN_HWTAGGING;
 
 	/*
 	 * We can perform TCPv4 and UDPv4 checkums in-bound.  Only

Reply via email to