diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-06-02 07:01:41 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-06-03 14:06:14 -0400 |
commit | 1f87f7d3a3b42b20f34cb03f0fd1a41c3d0e27f3 (patch) | |
tree | 642882153a48e910a415e6bb23bcfb79fadef6dd /net/mac80211/cfg.c | |
parent | 6081162e2ed78dfcf149b076b047078ab1445cc2 (diff) |
cfg80211: add rfkill support
To be easier on drivers and users, have cfg80211 register an
rfkill structure that drivers can access. When soft-killed,
simply take down all interfaces; when hard-killed the driver
needs to notify us and we will take down the interfaces
after the fact. While rfkilled, interfaces cannot be set UP.
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 | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 81258acf48bc..a9211cc183cb 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -1340,7 +1340,6 @@ static int ieee80211_set_tx_power(struct wiphy *wiphy, | |||
1340 | struct ieee80211_local *local = wiphy_priv(wiphy); | 1340 | struct ieee80211_local *local = wiphy_priv(wiphy); |
1341 | struct ieee80211_channel *chan = local->hw.conf.channel; | 1341 | struct ieee80211_channel *chan = local->hw.conf.channel; |
1342 | u32 changes = 0; | 1342 | u32 changes = 0; |
1343 | bool radio_enabled = true; | ||
1344 | 1343 | ||
1345 | switch (type) { | 1344 | switch (type) { |
1346 | case TX_POWER_AUTOMATIC: | 1345 | case TX_POWER_AUTOMATIC: |
@@ -1359,14 +1358,6 @@ static int ieee80211_set_tx_power(struct wiphy *wiphy, | |||
1359 | return -EINVAL; | 1358 | return -EINVAL; |
1360 | local->user_power_level = dbm; | 1359 | local->user_power_level = dbm; |
1361 | break; | 1360 | break; |
1362 | case TX_POWER_OFF: | ||
1363 | radio_enabled = false; | ||
1364 | break; | ||
1365 | } | ||
1366 | |||
1367 | if (radio_enabled != local->hw.conf.radio_enabled) { | ||
1368 | changes |= IEEE80211_CONF_CHANGE_RADIO_ENABLED; | ||
1369 | local->hw.conf.radio_enabled = radio_enabled; | ||
1370 | } | 1361 | } |
1371 | 1362 | ||
1372 | ieee80211_hw_config(local, changes); | 1363 | ieee80211_hw_config(local, changes); |
@@ -1380,12 +1371,16 @@ static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm) | |||
1380 | 1371 | ||
1381 | *dbm = local->hw.conf.power_level; | 1372 | *dbm = local->hw.conf.power_level; |
1382 | 1373 | ||
1383 | if (!local->hw.conf.radio_enabled) | ||
1384 | return -ENETDOWN; | ||
1385 | |||
1386 | return 0; | 1374 | return 0; |
1387 | } | 1375 | } |
1388 | 1376 | ||
1377 | static void ieee80211_rfkill_poll(struct wiphy *wiphy) | ||
1378 | { | ||
1379 | struct ieee80211_local *local = wiphy_priv(wiphy); | ||
1380 | |||
1381 | drv_rfkill_poll(local); | ||
1382 | } | ||
1383 | |||
1389 | struct cfg80211_ops mac80211_config_ops = { | 1384 | struct cfg80211_ops mac80211_config_ops = { |
1390 | .add_virtual_intf = ieee80211_add_iface, | 1385 | .add_virtual_intf = ieee80211_add_iface, |
1391 | .del_virtual_intf = ieee80211_del_iface, | 1386 | .del_virtual_intf = ieee80211_del_iface, |
@@ -1427,4 +1422,5 @@ struct cfg80211_ops mac80211_config_ops = { | |||
1427 | .set_wiphy_params = ieee80211_set_wiphy_params, | 1422 | .set_wiphy_params = ieee80211_set_wiphy_params, |
1428 | .set_tx_power = ieee80211_set_tx_power, | 1423 | .set_tx_power = ieee80211_set_tx_power, |
1429 | .get_tx_power = ieee80211_get_tx_power, | 1424 | .get_tx_power = ieee80211_get_tx_power, |
1425 | .rfkill_poll = ieee80211_rfkill_poll, | ||
1430 | }; | 1426 | }; |