diff options
| author | ppatience0 <ppatience0@gmail.com> | 2013-02-13 07:12:51 -0500 |
|---|---|---|
| committer | ppatience0 <ppatience0@gmail.com> | 2013-02-13 07:12:51 -0500 |
| commit | 0734a0b8367b29898ca2a8bf0bfd155450d9e5f6 (patch) | |
| tree | 257251ab7d30ea77a3964061b242d9ce3087246d | |
| parent | c2f5d36d7f5b5df5896ee601c39c847f24636899 (diff) | |
| download | plan9front-0734a0b8367b29898ca2a8bf0bfd155450d9e5f6.tar.xz | |
ether8169: support for RTL8111/8168B
| -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 cc27fabea..1b519ce30 100644 --- a/sys/src/9/pc/ether8169.c +++ b/sys/src/9/pc/ether8169.c @@ -113,6 +113,7 @@ enum { /* Tcr */ Macv15 = 0x38800000, /* RTL8100E */ // Macv19 = 0x3c000000, /* dup Macv12a: RTL8111c-gr */ Macv25 = 0x28000000, /* RTL8168D */ + Macv26 = 0x48000000, /* RTL8111/8168B */ Ifg0 = 0x01000000, /* Interframe Gap 0 */ Ifg1 = 0x02000000, /* Interframe Gap 1 */ }; @@ -1008,6 +1009,7 @@ vetmacv(Ctlr *ctlr, uint *macv) case Macv14: case Macv15: case Macv25: + case Macv26: break; } return 0; |
