diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-25 11:12:54 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-11-25 11:12:54 +0000 |
commit | dd376135b385eab35f5343d322610bbb6cf1d8d3 (patch) | |
tree | b51db6abd26045e8b863ebef1fdf98f569d2d360 /sys/dev | |
parent | 82dfb3c575c5bfb198dbcaae3c3ca84f7386c38e (diff) |
Small fixes related to the IFF_OACTIVE removal.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/i82596.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/i82596.c b/sys/dev/ic/i82596.c index c47ae409f79..82202463b3a 100644 --- a/sys/dev/ic/i82596.c +++ b/sys/dev/ic/i82596.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82596.c,v 1.48 2015/11/25 03:09:58 dlg Exp $ */ +/* $OpenBSD: i82596.c,v 1.49 2015/11/25 11:12:53 mpi Exp $ */ /* $NetBSD: i82586.c,v 1.18 1998/08/15 04:42:42 mycroft Exp $ */ /*- @@ -1353,7 +1353,7 @@ i82596_reset(sc, hard) /* Clear OACTIVE in case we're called from watchdog (frozen xmit). */ sc->sc_arpcom.ac_if.if_timer = 0; - ifq_clr_oactive(sc->sc_arpcom.ac_if.if_snd); + ifq_clr_oactive(&sc->sc_arpcom.ac_if.if_snd); /* * Stop i82596 dead in its tracks. |