aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath/if_athvar.h
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2017-02-07 02:21:34 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2017-02-07 02:21:34 +0000
commitf45d974ee9cec2e5ea2efd33dacade8449134781 (patch)
tree0aa09faa40395809c88a7d8ca0466b35746a6de8 /sys/dev/ath/if_athvar.h
parent916aa57754888f43c80ed7873be3f7380db7106e (diff)
Notes
Diffstat (limited to 'sys/dev/ath/if_athvar.h')
-rw-r--r--sys/dev/ath/if_athvar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index ce2abc1f2404..2a183ad0ed8a 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -490,6 +490,7 @@ struct ath_vap {
int (*av_set_tim)(struct ieee80211_node *, int);
void (*av_recv_pspoll)(struct ieee80211_node *,
struct mbuf *);
+ struct ieee80211_quiet_ie quiet_ie;
};
#define ATH_VAP(vap) ((struct ath_vap *)(vap))
@@ -1484,6 +1485,8 @@ void ath_intr(void *);
((*(_ah)->ah_get11nExtBusy)((_ah)))
#define ath_hal_setchainmasks(_ah, _txchainmask, _rxchainmask) \
((*(_ah)->ah_setChainMasks)((_ah), (_txchainmask), (_rxchainmask)))
+#define ath_hal_set_quiet(_ah, _p, _d, _o, _f) \
+ ((*(_ah)->ah_setQuiet)((_ah), (_p), (_d), (_o), (_f)))
#define ath_hal_spectral_supported(_ah) \
(ath_hal_getcapability(_ah, HAL_CAP_SPECTRAL_SCAN, 0, NULL) == HAL_OK)