Module Name: src
Committed By: msaitoh
Date: Fri Oct 23 08:45:14 UTC 2015
Modified Files:
src/sys/dev/pci: if_wmreg.h
Log Message:
PHY_CTRL_GBE_DIS is not bit 4 but bit 6. This change has no any effect by
default because WM_WOL is not defined yet and
m_kmrn_lock_loss_workaround_ich8lan() is broken.
To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 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.85 src/sys/dev/pci/if_wmreg.h:1.86
--- src/sys/dev/pci/if_wmreg.h:1.85 Tue Oct 13 10:39:25 2015
+++ src/sys/dev/pci/if_wmreg.h Fri Oct 23 08:45:14 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: if_wmreg.h,v 1.85 2015/10/13 10:39:25 knakahara Exp $ */
+/* $NetBSD: if_wmreg.h,v 1.86 2015/10/23 08:45:14 msaitoh Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -711,7 +711,7 @@ struct livengood_tcpip_ctxdesc {
#define PHY_CTRL_D0A_LPLU (1 << 1)
#define PHY_CTRL_NOND0A_LPLU (1 << 2)
#define PHY_CTRL_NOND0A_GBE_DIS (1 << 3)
-#define PHY_CTRL_GBE_DIS (1 << 4)
+#define PHY_CTRL_GBE_DIS (1 << 6)
#define WMREG_PBA 0x1000 /* Packet Buffer Allocation */
#define PBA_BYTE_SHIFT 10 /* KB -> bytes */