diff options
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
| -rw-r--r-- | net/mac80211/ieee80211_i.h | 15 | 
1 files changed, 4 insertions, 11 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 74594f012cd..cee0c7493fd 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -228,7 +228,7 @@ struct ieee80211_rx_data {  struct beacon_data {  	u8 *head, *tail;  	int head_len, tail_len; -	int dtim_period; +	struct rcu_head rcu_head;  };  struct ieee80211_if_ap { @@ -1128,12 +1128,6 @@ static inline struct ieee80211_local *hw_to_local(  	return container_of(hw, struct ieee80211_local, hw);  } -static inline struct ieee80211_hw *local_to_hw( -	struct ieee80211_local *local) -{ -	return &local->hw; -} -  static inline int ieee80211_bssid_match(const u8 *raddr, const u8 *addr)  { @@ -1156,11 +1150,9 @@ int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,  int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,  			struct cfg80211_assoc_request *req);  int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, -			 struct cfg80211_deauth_request *req, -			 void *cookie); +			 struct cfg80211_deauth_request *req);  int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata, -			   struct cfg80211_disassoc_request *req, -			   void *cookie); +			   struct cfg80211_disassoc_request *req);  void ieee80211_send_pspoll(struct ieee80211_local *local,  			   struct ieee80211_sub_if_data *sdata);  void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency); @@ -1178,6 +1170,7 @@ void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,  				  struct sk_buff *skb);  void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata);  void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata); +void ieee80211_mgd_teardown(struct ieee80211_sub_if_data *sdata);  /* IBSS code */  void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local);  |