summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2007-02-26 20:27:18 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2007-02-26 20:27:18 +0000
commitc5391d0ed8f8a70995a6a8a5499d6f4486cfeb68 (patch)
treeb5d26d6a6ff03d7d8bc1edbcfb781966eeaae204 /sys/dev/pci
parent84f0e3fb0e0476e81f2041e5d66c828b1c8248fc (diff)
Fix Rx FIFO constants. From brad@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/if_skreg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_skreg.h b/sys/dev/pci/if_skreg.h
index 1ba00a23bce..0b81c4b6f65 100644
--- a/sys/dev/pci/if_skreg.h
+++ b/sys/dev/pci/if_skreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_skreg.h,v 1.43 2007/02/10 22:49:46 kettenis Exp $ */
+/* $OpenBSD: if_skreg.h,v 1.44 2007/02/26 20:27:17 kettenis Exp $ */
/*
* Copyright (c) 1997, 1998, 1999, 2000
@@ -1053,8 +1053,8 @@
#define SK_RFCTL_RD_PTR_TST_ON 0x00000400 /* Read pointer test on */
#define SK_RFCTL_RD_PTR_TST_OFF 0x00000200 /* Read pointer test off */
#define SK_RFCTL_RD_PTR_STEP 0x00000100 /* Read pointer increment */
-#define SK_RFCTL_FIFO_FLUSH_OFF 0x00000080 /* RX FIFO Flsuh mode off */
-#define SK_RFCTL_FIFO_FLUSH_ON 0x00000040 /* RX FIFO Flush mode on */
+#define SK_RFCTL_FIFO_FLUSH_ON 0x00000080 /* RX FIFO Flush mode on */
+#define SK_RFCTL_FIFO_FLUSH_OFF 0x00000040 /* RX FIFO Flush mode off */
#define SK_RFCTL_RX_FIFO_OVER 0x00000020 /* Clear IRQ RX FIFO Overrun */
#define SK_RFCTL_FRAME_RX_DONE 0x00000010 /* Clear IRQ Frame RX Done */
#define SK_RFCTL_OPERATION_ON 0x00000008 /* Operational mode on */