diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-02-08 21:42:12 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-02-08 21:42:12 +0000 |
commit | 8899a5bb6b05cd37d0b4d5fbf934f6fd8c781690 (patch) | |
tree | 5b4fbf901485510fd37afabc4c7aa4616c6263a8 | |
parent | ed17a83d1f8476babc9fb8088a2010f25d483e77 (diff) |
avoid more spurious printfs (account for other uninteresting events).
-rw-r--r-- | sys/dev/ic/hme.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c index 4bb859d7667..bf844c13f1a 100644 --- a/sys/dev/ic/hme.c +++ b/sys/dev/ic/hme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hme.c,v 1.24 2003/02/01 06:00:10 jason Exp $ */ +/* $OpenBSD: hme.c,v 1.25 2003/02/08 21:42:11 jason Exp $ */ /* $NetBSD: hme.c,v 1.21 2001/07/07 15:59:37 thorpej Exp $ */ /*- @@ -817,6 +817,10 @@ hme_eint(sc, status) status &= ~HME_SEB_STAT_NORXD; } + status &= ~(HME_SEB_STAT_RXTOHOST | HME_SEB_STAT_GOTFRAME | + HME_SEB_STAT_SENTFRAME | HME_SEB_STAT_HOSTTOTX | + HME_SEB_STAT_TXALL); + if (status == 0) return (1); |