diff options
Diffstat (limited to 'sys/dev/ic/ath.c')
| -rw-r--r-- | sys/dev/ic/ath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c index 6fa549bcb3b..314dc23655f 100644 --- a/sys/dev/ic/ath.c +++ b/sys/dev/ic/ath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ath.c,v 1.106 2015/10/25 12:48:46 mpi Exp $ */ +/* $OpenBSD: ath.c,v 1.107 2015/11/04 12:11:59 dlg Exp $ */ /* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */ /*- @@ -857,7 +857,7 @@ ath_start(struct ifnet *ifp) * Poll the management queue for frames; they * have priority over normal data frames. */ - IF_DEQUEUE(&ic->ic_mgtq, m); + m = mq_dequeue(&ic->ic_mgtq); if (m == NULL) { /* * No data frames go out unless we're associated. |
