diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-01 15:22:37 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-04-01 15:22:37 +0200 |
commit | 0b001e265cac185947c0b0c919dbab6afec2f72c (patch) | |
tree | 95bcccf7b5afa96e84c189413b914cbf451cdc98 /sys/src/9/pc/ether8169.c | |
parent | 0f785af644b250fbf2aae77e3c7c509f80dad7b3 (diff) |
ether8169: fix Macv45
Diffstat (limited to 'sys/src/9/pc/ether8169.c')
-rw-r--r-- | sys/src/9/pc/ether8169.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/ether8169.c b/sys/src/9/pc/ether8169.c index e7f0f1b8a..2752406ac 100644 --- a/sys/src/9/pc/ether8169.c +++ b/sys/src/9/pc/ether8169.c @@ -706,7 +706,6 @@ rtl8169init(Ether* edev) switch(ctlr->macv){ case Macv40: case Macv44: - case Macv45: cplusc |= Macstatdis; break; default: @@ -1057,6 +1056,7 @@ vetmacv(Ctlr *ctlr, uint *macv) case Macv30: case Macv40: case Macv44: + case Macv45: break; } return 0; |