aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/driver-ops.h
diff options
context:
space:
mode:
authorLuciano Coelho <luciano.coelho@intel.com>2014-10-08 02:48:38 -0400
committerJohannes Berg <johannes.berg@intel.com>2014-10-09 05:30:09 -0400
commitf1d65583bc5bd43ace8abb9d4f4d9e8da407f708 (patch)
tree7c51dcf4057ab096c49700567162ceeb7458e226 /net/mac80211/driver-ops.h
parent6d027bcc8a4e2518ae825b0ff3dd069ab1abfe96 (diff)
mac80211: add post_channel_switch driver operation
As a counterpart to the pre_channel_switch operation, add a post_channel_switch operation. This allows the drivers to go back to a normal configuration after the channel switch is completed. Signed-off-by: Luciano Coelho <luciano.coelho@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r--net/mac80211/driver-ops.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h
index 5522672129ce..0a6090644769 100644
--- a/net/mac80211/driver-ops.h
+++ b/net/mac80211/driver-ops.h
@@ -1214,6 +1214,22 @@ drv_pre_channel_switch(struct ieee80211_sub_if_data *sdata,
1214 return ret; 1214 return ret;
1215} 1215}
1216 1216
1217static inline int
1218drv_post_channel_switch(struct ieee80211_sub_if_data *sdata)
1219{
1220 struct ieee80211_local *local = sdata->local;
1221 int ret = 0;
1222
1223 if (!check_sdata_in_driver(sdata))
1224 return -EIO;
1225
1226 trace_drv_post_channel_switch(local, sdata);
1227 if (local->ops->post_channel_switch)
1228 ret = local->ops->post_channel_switch(&local->hw, &sdata->vif);
1229 trace_drv_return_int(local, ret);
1230 return ret;
1231}
1232
1217static inline int drv_join_ibss(struct ieee80211_local *local, 1233static inline int drv_join_ibss(struct ieee80211_local *local,
1218 struct ieee80211_sub_if_data *sdata) 1234 struct ieee80211_sub_if_data *sdata)
1219{ 1235{