summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/ethervt6102.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2018-02-18 19:56:01 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2018-02-18 19:56:01 +0100
commit729c9c39d9156674f61d086e3306bcc04ce8dfc5 (patch)
tree61be8ec4270d88b6aa12c802e05742c225d10455 /sys/src/9/pc/ethervt6102.c
parenta2e8246ffc12660f8628266e73aae74b52bd86d8 (diff)
devether: mux bridges, portable netconsole
Diffstat (limited to 'sys/src/9/pc/ethervt6102.c')
-rw-r--r--sys/src/9/pc/ethervt6102.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/ethervt6102.c b/sys/src/9/pc/ethervt6102.c
index 30862c3ca..ef4196368 100644
--- a/sys/src/9/pc/ethervt6102.c
+++ b/sys/src/9/pc/ethervt6102.c
@@ -720,7 +720,7 @@ vt6102receive(Ether* edev)
else if(bp = iallocb(Rdbsz+3)){
len = ((ds->status & LengthMASK)>>LengthSHIFT)-4;
ds->bp->wp = ds->bp->rp+len;
- etheriq(edev, ds->bp, 1);
+ etheriq(edev, ds->bp);
bp->rp = (uchar*)ROUNDUP((ulong)bp->rp, 4);
ds->addr = PCIWADDR(bp->rp);
ds->bp = bp;