diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-08-16 19:38:35 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-08-16 19:38:35 +0000 |
commit | 564ebdbcba322ab006601c809fc18cfe1d84c998 (patch) | |
tree | 30f3fd8a59eaf7093928553ea414923a25553b40 | |
parent | 47eb2482b16b482ba6f3bd8e8c9a60a3b2e37338 (diff) |
Not a bug, but change the ID strings for devices with hardware rev
0x30000000 and 0x38000000 to both be 8168B/8111B. According to RealTek,
they're both the same device, but 0x30000000 is an earlier silicon spin.
From wpaul@FreeBSD
-rw-r--r-- | sys/dev/ic/rtl81x9reg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/rtl81x9reg.h b/sys/dev/ic/rtl81x9reg.h index a320021f009..06212249bd1 100644 --- a/sys/dev/ic/rtl81x9reg.h +++ b/sys/dev/ic/rtl81x9reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtl81x9reg.h,v 1.27 2006/08/05 21:38:20 brad Exp $ */ +/* $OpenBSD: rtl81x9reg.h,v 1.28 2006/08/16 19:38:34 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -153,10 +153,10 @@ #define RL_HWREV_8169S 0x04000000 #define RL_HWREV_8169_8110SB 0x10000000 #define RL_HWREV_8169_8110SC 0x18000000 -#define RL_HWREV_8168 0x30000000 +#define RL_HWREV_8168_SPIN1 0x30000000 #define RL_HWREV_8100E 0x30800000 #define RL_HWREV_8101E 0x34000000 -#define RL_HWREV_8111 0x38000000 +#define RL_HWREV_8168_SPIN2 0x38000000 #define RL_HWREV_8139 0x60000000 #define RL_HWREV_8139A 0x70000000 #define RL_HWREV_8139AG 0x70800000 |