diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-03-15 22:15:10 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-03-15 22:15:10 +0000 |
commit | b1e63c54339bd39a119cfdb973254ea2e58763f5 (patch) | |
tree | 498e6e612885e4182b7731ff217c5875bfc31354 | |
parent | 2f048499934ba260a1545e3eabeaed5bda2d948f (diff) |
Missing splx
-rw-r--r-- | sys/dev/ic/fxp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c index 0be14b8de7f..9200f5fa05b 100644 --- a/sys/dev/ic/fxp.c +++ b/sys/dev/ic/fxp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fxp.c,v 1.32 2002/03/14 01:26:54 millert Exp $ */ +/* $OpenBSD: fxp.c,v 1.33 2002/03/15 22:15:09 art Exp $ */ /* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */ /* @@ -928,6 +928,7 @@ fxp_stats_update(arg) if (sc->rx_idle_secs > FXP_MAX_RX_IDLE) { sc->rx_idle_secs = 0; fxp_init(sc); + splx(s); return; } /* |