summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2013-02-22 10:37:47 +0100
committercinap_lenrek <cinap_lenrek@gmx.de>2013-02-22 10:37:47 +0100
commit56d9f57dc8afd8ef4c6d54a10c958446dd2d7fbe (patch)
tree6c891b90b6673604e344b5b436d18aa6338ad35d
parentf9e0bc9eb43ca04d676bf7186187115e2c52c6f9 (diff)
downloadplan9front-56d9f57dc8afd8ef4c6d54a10c958446dd2d7fbe.tar.xz
ether8169: add RTL8111e mac id (thanks glorfdev for the patch)
-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 1b519ce30..415029c40 100644
--- a/sys/src/9/pc/ether8169.c
+++ b/sys/src/9/pc/ether8169.c
@@ -114,6 +114,7 @@ enum { /* Tcr */
// Macv19 = 0x3c000000, /* dup Macv12a: RTL8111c-gr */
Macv25 = 0x28000000, /* RTL8168D */
Macv26 = 0x48000000, /* RTL8111/8168B */
+ Macv27 = 0x2c800000, /* RTL8111e */
Ifg0 = 0x01000000, /* Interframe Gap 0 */
Ifg1 = 0x02000000, /* Interframe Gap 1 */
};
@@ -1010,6 +1011,7 @@ vetmacv(Ctlr *ctlr, uint *macv)
case Macv15:
case Macv25:
case Macv26:
+ case Macv27:
break;
}
return 0;