diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-04-19 15:25:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-22 16:57:17 -0400 |
commit | af8cdcd828ad751fae8e6cbfe94eef9f2f23b14b (patch) | |
tree | 7a00a19c976abbeba16bd04ddc177b6332057c98 /net/mac80211/cfg.c | |
parent | 04a773ade0680d862b479d7219973df60f7a3834 (diff) |
mac80211: convert to cfg80211 IBSS API
This converts mac80211 to the new cfg80211 IBSS API, the
wext handling functions are called where appropriate.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index daf75287e92a..14013dc64474 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -1283,6 +1283,21 @@ static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev, | |||
1283 | return ieee80211_sta_disassociate(sdata, req->reason_code); | 1283 | return ieee80211_sta_disassociate(sdata, req->reason_code); |
1284 | } | 1284 | } |
1285 | 1285 | ||
1286 | static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, | ||
1287 | struct cfg80211_ibss_params *params) | ||
1288 | { | ||
1289 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | ||
1290 | |||
1291 | return ieee80211_ibss_join(sdata, params); | ||
1292 | } | ||
1293 | |||
1294 | static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) | ||
1295 | { | ||
1296 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | ||
1297 | |||
1298 | return ieee80211_ibss_leave(sdata); | ||
1299 | } | ||
1300 | |||
1286 | struct cfg80211_ops mac80211_config_ops = { | 1301 | struct cfg80211_ops mac80211_config_ops = { |
1287 | .add_virtual_intf = ieee80211_add_iface, | 1302 | .add_virtual_intf = ieee80211_add_iface, |
1288 | .del_virtual_intf = ieee80211_del_iface, | 1303 | .del_virtual_intf = ieee80211_del_iface, |
@@ -1319,4 +1334,6 @@ struct cfg80211_ops mac80211_config_ops = { | |||
1319 | .assoc = ieee80211_assoc, | 1334 | .assoc = ieee80211_assoc, |
1320 | .deauth = ieee80211_deauth, | 1335 | .deauth = ieee80211_deauth, |
1321 | .disassoc = ieee80211_disassoc, | 1336 | .disassoc = ieee80211_disassoc, |
1337 | .join_ibss = ieee80211_join_ibss, | ||
1338 | .leave_ibss = ieee80211_leave_ibss, | ||
1322 | }; | 1339 | }; |