Module Name:    src
Committed By:   msaitoh
Date:           Thu Oct  8 04:30:25 UTC 2015

Modified Files:
        src/sys/dev/pci: if_wmreg.h

Log Message:
- ACK Accelerate Disable in the RFCTL register is not bit 13 but 12.
  No binary change because this definition have not used yet.
- Add ACK data Disable bit's definition.


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/dev/pci/if_wmreg.h

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_wmreg.h
diff -u src/sys/dev/pci/if_wmreg.h:1.81 src/sys/dev/pci/if_wmreg.h:1.82
--- src/sys/dev/pci/if_wmreg.h:1.81	Wed Sep 30 08:42:04 2015
+++ src/sys/dev/pci/if_wmreg.h	Thu Oct  8 04:30:25 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_wmreg.h,v 1.81 2015/09/30 08:42:04 knakahara Exp $	*/
+/*	$NetBSD: if_wmreg.h,v 1.82 2015/10/08 04:30:25 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -875,7 +875,8 @@ struct livengood_tcpip_ctxdesc {
 #define WMREG_RFCTL	0x5008	/* Receive Filter Control */
 #define WMREG_RFCTL_NFSWDIS	__BIT(6)  /* NFS Write Disable */
 #define WMREG_RFCTL_NFSRDIS	__BIT(7)  /* NFS Read Disable */
-#define WMREG_RFCTL_ACKDIS	__BIT(13) /* ACK Accelerate Disable */
+#define WMREG_RFCTL_ACKDIS	__BIT(12) /* ACK Accelerate Disable */
+#define WMREG_RFCTL_ACKD_DIS	__BIT(13) /* ACK data Disable */
 #define WMREG_RFCTL_IPV6EXDIS	__BIT(16) /* IPv6 Extension Header Disable */
 #define WMREG_RFCTL_NEWIPV6EXDIS __BIT(17) /* New IPv6 Extension Header */
 

Reply via email to