diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-01-15 17:37:42 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-01-16 20:55:44 +0100 |
commit | f1d267cab2bc6ecd225abfd8d7e130f9a651408f (patch) | |
tree | 4056079174c05361be62b0ed3f5548ebb529f18a /drivers/net/wireless/ath/ath.h | |
parent | mwifiex: export threshold value and retry limit to cfg80211 (diff) | |
download | linux-f1d267cab2bc6ecd225abfd8d7e130f9a651408f.tar.xz linux-f1d267cab2bc6ecd225abfd8d7e130f9a651408f.zip |
ath: add common function ath_is_mybeacon
this function is used by most ath driver, so it can be moved here.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath.h')
-rw-r--r-- | drivers/net/wireless/ath/ath.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h index e0ba7cd14252..b59cfbe0276b 100644 --- a/drivers/net/wireless/ath/ath.h +++ b/drivers/net/wireless/ath/ath.h @@ -17,6 +17,7 @@ #ifndef ATH_H #define ATH_H +#include <linux/etherdevice.h> #include <linux/skbuff.h> #include <linux/if_ether.h> #include <linux/spinlock.h> @@ -165,6 +166,7 @@ struct ath_common { struct sk_buff *ath_rxbuf_alloc(struct ath_common *common, u32 len, gfp_t gfp_mask); +bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr); void ath_hw_setbssidmask(struct ath_common *common); void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key); |