Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci - ACK Accelerate Disable in the RFCTL register i...



details:   https://anonhg.NetBSD.org/src/rev/8b53c75bb46b
branches:  trunk
changeset: 340873:8b53c75bb46b
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Oct 08 04:30:25 2015 +0000

description:
- 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.

diffstat:

 sys/dev/pci/if_wmreg.h |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 4aba57b0419f -r 8b53c75bb46b sys/dev/pci/if_wmreg.h
--- a/sys/dev/pci/if_wmreg.h    Wed Oct 07 14:09:04 2015 +0000
+++ b/sys/dev/pci/if_wmreg.h    Thu Oct 08 04:30:25 2015 +0000
@@ -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 @@
 #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 */
 



Home | Main Index | Thread Index | Old Index