diff options
author | adrian <adrian@FreeBSD.org> | 2012-04-10 19:47:44 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-04-10 19:47:44 +0000 |
commit | f0d73b67412f77f8ec067ccb7e25190dce1a3a14 (patch) | |
tree | 7f4d1c8f70c45495e813911bbe35f973c54cbec7 /sys/dev | |
parent | c2d174fcfd76cebd7724bbb555fac3f84d27842f (diff) | |
download | FreeBSD-src-f0d73b67412f77f8ec067ccb7e25190dce1a3a14.zip FreeBSD-src-f0d73b67412f77f8ec067ccb7e25190dce1a3a14.tar.gz |
Fix compilation with IEEE80211_ENABLE_SUPERG defined.
PR: kern/164951
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ath/if_ath.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index fc1449f..0019867 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -4906,6 +4906,7 @@ ath_tx_processq(struct ath_softc *sc, struct ath_txq *txq, int dosched) struct ath_tx_status *ts; struct ieee80211_node *ni; struct ath_node *an; + struct ieee80211com *ic = sc->sc_ifp->if_l2com; int nacked; HAL_STATUS status; |