diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-10-05 22:32:12 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-10-05 22:32:12 +0000 |
commit | 27ff411066626f50207e003253d6ddec5dfd83b0 (patch) | |
tree | 4a41e9d1083ac095ff38fd2b1589d35f6e2e6181 /sys/dev/ic | |
parent | 2fc13cfc67583a40640ee5cf5b8e1265bebd9116 (diff) |
Detect if the adapter is a PCIe adapter and set the RL_FLAG_PCIE flag
if so.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/rtl81x9reg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/rtl81x9reg.h b/sys/dev/ic/rtl81x9reg.h index 56fffea52af..2f0fab8d858 100644 --- a/sys/dev/ic/rtl81x9reg.h +++ b/sys/dev/ic/rtl81x9reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtl81x9reg.h,v 1.52 2008/08/27 20:38:59 brad Exp $ */ +/* $OpenBSD: rtl81x9reg.h,v 1.53 2008/10/05 22:32:11 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -806,6 +806,7 @@ 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 |