Commit fd0ab793 authored by Oleksij Rempel's avatar Oleksij Rempel Committed by John W. Linville

ath9k: move struct ath_beacon_config to common

Signed-off-by: default avatarOleksij Rempel <linux@rempel-privat.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c2d23c70
...@@ -408,15 +408,6 @@ void ath9k_calculate_iter_data(struct ieee80211_hw *hw, ...@@ -408,15 +408,6 @@ void ath9k_calculate_iter_data(struct ieee80211_hw *hw,
#define TSF_TO_TU(_h,_l) \ #define TSF_TO_TU(_h,_l) \
((((u32)(_h)) << 22) | (((u32)(_l)) >> 10)) ((((u32)(_h)) << 22) | (((u32)(_l)) >> 10))
struct ath_beacon_config {
int beacon_interval;
u16 dtim_period;
u16 bmiss_timeout;
u8 dtim_count;
bool enable_beacon;
bool ibss_creator;
};
struct ath_beacon { struct ath_beacon {
enum { enum {
OK, /* no change needed */ OK, /* no change needed */
......
...@@ -44,6 +44,15 @@ ...@@ -44,6 +44,15 @@
#define ATH_EP_RND(x, mul) \ #define ATH_EP_RND(x, mul) \
(((x) + ((mul)/2)) / (mul)) (((x) + ((mul)/2)) / (mul))
struct ath_beacon_config {
int beacon_interval;
u16 dtim_period;
u16 bmiss_timeout;
u8 dtim_count;
bool enable_beacon;
bool ibss_creator;
};
bool ath9k_cmn_rx_accept(struct ath_common *common, bool ath9k_cmn_rx_accept(struct ath_common *common,
struct ieee80211_hdr *hdr, struct ieee80211_hdr *hdr,
struct ieee80211_rx_status *rxs, struct ieee80211_rx_status *rxs,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment