diff options
author | mlaier <mlaier@FreeBSD.org> | 2005-03-13 01:54:41 +0000 |
---|---|---|
committer | mlaier <mlaier@FreeBSD.org> | 2005-03-13 01:54:41 +0000 |
commit | 347e70d823a70c962eb17139c00f55296e50110a (patch) | |
tree | cb6bc374d17836b29c44bb304c0118215dfe6607 | |
parent | 816c5be74488c3c1969743eb6cf711ed170d9c96 (diff) | |
download | FreeBSD-src-347e70d823a70c962eb17139c00f55296e50110a.zip FreeBSD-src-347e70d823a70c962eb17139c00f55296e50110a.tar.gz |
Unbreak build with POLLING. I should really listen and test with NOTES
instead of the module build.
-rw-r--r-- | sys/dev/re/if_re.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c index d458aa7..a887f18 100644 --- a/sys/dev/re/if_re.c +++ b/sys/dev/re/if_re.c @@ -1791,7 +1791,7 @@ re_poll_locked(struct ifnet *ifp, enum poll_cmd cmd, int count) re_rxeof(sc); re_txeof(sc); - if (!IFQ_DRV_IS_EMPTY(ifp->if_snd)) + if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd)) re_start_locked(ifp); if (cmd == POLL_AND_CHECK_STATUS) { /* also check status register */ |