summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2008-10-05 22:43:41 +0000
committerBrad Smith <brad@cvs.openbsd.org>2008-10-05 22:43:41 +0000
commitce0e3bf4f3fdcac79b08ed3d5648e6bf54e46e2f (patch)
tree6cc734f39d33ca2ba068dff8e090ce71703e4bf4
parent27ff411066626f50207e003253d6ddec5dfd83b0 (diff)
Add a flag to indicate a 64-bit PCI bus is present.
-rw-r--r--sys/dev/ic/rtl81x9reg.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/sys/dev/ic/rtl81x9reg.h b/sys/dev/ic/rtl81x9reg.h
index 2f0fab8d858..c0850ac23f6 100644
--- a/sys/dev/ic/rtl81x9reg.h
+++ b/sys/dev/ic/rtl81x9reg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rtl81x9reg.h,v 1.53 2008/10/05 22:32:11 brad Exp $ */
+/* $OpenBSD: rtl81x9reg.h,v 1.54 2008/10/05 22:43:40 brad Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -806,13 +806,14 @@ struct rl_softc {
int rl_txstart;
u_int32_t rl_flags;
#define RL_FLAG_MSI 0x0001
-#define RL_FLAG_PCIE 0x0002
-#define RL_FLAG_INVMAR 0x0004
-#define RL_FLAG_PHYWAKE 0x0008
-#define RL_FLAG_NOJUMBO 0x0010
-#define RL_FLAG_PAR 0x0020
-#define RL_FLAG_DESCV2 0x0040
-#define RL_FLAG_MACSTAT 0x0080
+#define RL_FLAG_PCI64 0x0002
+#define RL_FLAG_PCIE 0x0004
+#define RL_FLAG_INVMAR 0x0008
+#define RL_FLAG_PHYWAKE 0x0010
+#define RL_FLAG_NOJUMBO 0x0020
+#define RL_FLAG_PAR 0x0040
+#define RL_FLAG_DESCV2 0x0080
+#define RL_FLAG_MACSTAT 0x0100
#define RL_FLAG_LINK 0x8000
};