diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-02-18 19:56:01 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-02-18 19:56:01 +0100 |
commit | 729c9c39d9156674f61d086e3306bcc04ce8dfc5 (patch) | |
tree | 61be8ec4270d88b6aa12c802e05742c225d10455 /sys/src/9/zynq | |
parent | a2e8246ffc12660f8628266e73aae74b52bd86d8 (diff) |
devether: mux bridges, portable netconsole
Diffstat (limited to 'sys/src/9/zynq')
-rw-r--r-- | sys/src/9/zynq/etherzynq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/zynq/etherzynq.c b/sys/src/9/zynq/etherzynq.c index 0a7465c87..709dad0b7 100644 --- a/sys/src/9/zynq/etherzynq.c +++ b/sys/src/9/zynq/etherzynq.c @@ -235,7 +235,7 @@ ethrx(Ether *edev) bp->wp = bp->rp + (r[1] & 0x1fff); invaldse(bp->rp, bp->wp); inval2pa(PADDR(bp->rp), PADDR(bp->wp)); - etheriq(edev, bp, 1); + etheriq(edev, bp); c->rxconsi = (c->rxconsi + 1) & (RXRING - 1); replenish(c); } |