diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-02-21 21:53:10 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-02-21 21:53:10 +0100 |
commit | 04171d24777d5a108df6e90e10fa7c8d0a841479 (patch) | |
tree | 268cfaeb9d631efd5809e2b66f26a8cb090d2638 /sys/src/9/pc | |
parent | a32d11dff358f60d6184fe8c9a0521cf878c6a4f (diff) |
ether8169: add support for RTL8106E (thanks _potato)
Diffstat (limited to 'sys/src/9/pc')
-rw-r--r-- | sys/src/9/pc/ether8169.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/ether8169.c b/sys/src/9/pc/ether8169.c index 9d962b267..38049d36a 100644 --- a/sys/src/9/pc/ether8169.c +++ b/sys/src/9/pc/ether8169.c @@ -120,6 +120,7 @@ enum { /* Tcr */ Macv28 = 0x2c000000, /* RTL8111/8168B */ Macv29 = 0x40800000, /* RTL8101/8102E */ Macv30 = 0x24000000, /* RTL8101E? (untested) */ + Macv39 = 0x44800000, /* RTL8106E */ Macv40 = 0x4c000000, /* RTL8168G */ Macv44 = 0x5c800000, /* RTL8411B */ Macv45 = 0x50800000, /* RTL8168GU */ @@ -1051,6 +1052,7 @@ vetmacv(Ctlr *ctlr, uint *macv) case Macv28: case Macv29: case Macv30: + case Macv39: case Macv40: case Macv44: case Macv45: |