diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2007-05-04 22:12:54 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2007-05-04 22:12:54 +0000 |
commit | f247ded2de14ac64103fec7ee1123838ce6f506e (patch) | |
tree | bd0dea5dc99ea65a00d5dc42a93ac0fa563a505d | |
parent | 93a3eebb4ece99ad69eb138805c2a524c38a2865 (diff) |
call the right function to fill the rxf fifo after rxd
-rw-r--r-- | sys/dev/pci/if_tht.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_tht.c b/sys/dev/pci/if_tht.c index ddb456f74ec..3a864d34a08 100644 --- a/sys/dev/pci/if_tht.c +++ b/sys/dev/pci/if_tht.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tht.c,v 1.90 2007/05/04 21:56:46 dlg Exp $ */ +/* $OpenBSD: if_tht.c,v 1.91 2007/05/04 22:12:53 dlg Exp $ */ /* * Copyright (c) 2007 David Gwynne <dlg@openbsd.org> @@ -1305,7 +1305,7 @@ tht_rxd(struct tht_softc *sc) tht_fifo_post(sc, &sc->sc_rxd); /* put more pkts on the fifo */ - tht_rxf(sc, 0); + tht_rxf_fill(sc, 0); } void |