summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormsaitoh <msaitoh@NetBSD.org>2015-10-23 08:45:14 +0000
committermsaitoh <msaitoh@NetBSD.org>2015-10-23 08:45:14 +0000
commite72ea9ac209c50f4bacffedef200b73cbd0aeae5 (patch)
treeac904e8867e987bd4b7ee20570917527e06f711f /sys/dev
parent61e71b016cf771eb025d7b334fa3997a58693f70 (diff)
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.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_wmreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_wmreg.h b/sys/dev/pci/if_wmreg.h
index 95453c6f1c4..2878f966b27 100644
--- a/sys/dev/pci/if_wmreg.h
+++ b/sys/dev/pci/if_wmreg.h
@@ -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 */