summaryrefslogtreecommitdiffstats
path: root/sys/dev/dc
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2001-10-25 17:43:26 +0000
committerluigi <luigi@FreeBSD.org>2001-10-25 17:43:26 +0000
commit321fc71364692f02cd72e85a8f846e7c06a8d308 (patch)
treef5bd05f988a8780cfe92a19e1609f452fdb40d82 /sys/dev/dc
parentaf343dd439b9f3478fe350bf144fe7f026d7c55b (diff)
downloadFreeBSD-src-321fc71364692f02cd72e85a8f846e7c06a8d308.zip
FreeBSD-src-321fc71364692f02cd72e85a8f846e7c06a8d308.tar.gz
Defs for three (unused so far) bits in PCI command/status register
were off by one bit.
Diffstat (limited to 'sys/dev/dc')
-rw-r--r--sys/dev/dc/if_dcreg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dc/if_dcreg.h b/sys/dev/dc/if_dcreg.h
index d949fca..9336728 100644
--- a/sys/dev/dc/if_dcreg.h
+++ b/sys/dev/dc/if_dcreg.h
@@ -937,9 +937,9 @@ struct dc_softc {
#define DC_CFCS_IOSPACE 0x00000001 /* I/O space enable */
#define DC_CFCS_MEMSPACE 0x00000002 /* memory space enable */
#define DC_CFCS_BUSMASTER 0x00000004 /* bus master enable */
-#define DC_CFCS_MWI_ENB 0x00000008 /* mem write and inval enable */
-#define DC_CFCS_PARITYERR_ENB 0x00000020 /* parity error enable */
-#define DC_CFCS_SYSERR_ENB 0x00000080 /* system error enable */
+#define DC_CFCS_MWI_ENB 0x00000010 /* mem write and inval enable */
+#define DC_CFCS_PARITYERR_ENB 0x00000040 /* parity error enable */
+#define DC_CFCS_SYSERR_ENB 0x00000100 /* system error enable */
#define DC_CFCS_NEWCAPS 0x00100000 /* new capabilities */
#define DC_CFCS_FAST_B2B 0x00800000 /* fast back-to-back capable */
#define DC_CFCS_DATAPARITY 0x01000000 /* Parity error report */
OpenPOWER on IntegriCloud