summaryrefslogtreecommitdiff
path: root/sys/src
diff options
context:
space:
mode:
authorppatience0 <ppatience0@gmail.com>2013-02-22 01:14:31 -0500
committerppatience0 <ppatience0@gmail.com>2013-02-22 01:14:31 -0500
commit82c816d15c1b7374a062267e97b5f85a4b78629b (patch)
treec5a4fe04b32d17173400b72aad547d6c7efcc15f /sys/src
parent412c23204d1cf7e8d92ab50fdc013f2ad45d4093 (diff)
ether8169: add another RTL8111/8168B mac id
Diffstat (limited to 'sys/src')
-rw-r--r--sys/src/9/pc/ether8169.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/ether8169.c b/sys/src/9/pc/ether8169.c
index 415029c40..01d73e2ad 100644
--- a/sys/src/9/pc/ether8169.c
+++ b/sys/src/9/pc/ether8169.c
@@ -115,6 +115,7 @@ enum { /* Tcr */
Macv25 = 0x28000000, /* RTL8168D */
Macv26 = 0x48000000, /* RTL8111/8168B */
Macv27 = 0x2c800000, /* RTL8111e */
+ Macv28 = 0x2c000000, /* RTL8111/8168B */
Ifg0 = 0x01000000, /* Interframe Gap 0 */
Ifg1 = 0x02000000, /* Interframe Gap 1 */
};
@@ -1012,6 +1013,7 @@ vetmacv(Ctlr *ctlr, uint *macv)
case Macv25:
case Macv26:
case Macv27:
+ case Macv28:
break;
}
return 0;