diff options
author | John W. Linville <linville@tuxdriver.com> | 2012-06-13 15:35:35 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-13 15:35:35 -0400 |
commit | 211c17aaee644bb808fbdeef547ac99db92c01ed (patch) | |
tree | 2acf7fe32b30f537b06fed7e4c536ef0d11f2902 /drivers/net/wireless | |
parent | ec8eb9ae5819da011ac574aa290207a2a47cdbae (diff) | |
parent | bcb7ad7bcbef030e6ba71ede1f9866368aca7c99 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
Conflicts:
drivers/net/wireless/ath/ath9k/main.c
net/bluetooth/hci_event.c
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 18 | ||||
-rw-r--r-- | drivers/net/wireless/mwifiex/uap_cmd.c | 11 | ||||
-rw-r--r-- | drivers/net/wireless/rndis_wlan.c | 2 |
3 files changed, 12 insertions, 19 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a6f83b683db1..52561b341d68 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
@@ -1036,15 +1036,6 @@ static int ath9k_add_interface(struct ieee80211_hw *hw, | |||
1036 | } | 1036 | } |
1037 | } | 1037 | } |
1038 | 1038 | ||
1039 | if ((ah->opmode == NL80211_IFTYPE_ADHOC) || | ||
1040 | ((vif->type == NL80211_IFTYPE_ADHOC) && | ||
1041 | sc->nvifs > 0)) { | ||
1042 | ath_err(common, "Cannot create ADHOC interface when other" | ||
1043 | " interfaces already exist.\n"); | ||
1044 | ret = -EINVAL; | ||
1045 | goto out; | ||
1046 | } | ||
1047 | |||
1048 | ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type); | 1039 | ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type); |
1049 | 1040 | ||
1050 | sc->nvifs++; | 1041 | sc->nvifs++; |
@@ -1069,15 +1060,6 @@ static int ath9k_change_interface(struct ieee80211_hw *hw, | |||
1069 | mutex_lock(&sc->mutex); | 1060 | mutex_lock(&sc->mutex); |
1070 | ath9k_ps_wakeup(sc); | 1061 | ath9k_ps_wakeup(sc); |
1071 | 1062 | ||
1072 | /* See if new interface type is valid. */ | ||
1073 | if ((new_type == NL80211_IFTYPE_ADHOC) && | ||
1074 | (sc->nvifs > 1)) { | ||
1075 | ath_err(common, "When using ADHOC, it must be the only" | ||
1076 | " interface.\n"); | ||
1077 | ret = -EINVAL; | ||
1078 | goto out; | ||
1079 | } | ||
1080 | |||
1081 | if (ath9k_uses_beacons(new_type) && | 1063 | if (ath9k_uses_beacons(new_type) && |
1082 | !ath9k_uses_beacons(vif->type)) { | 1064 | !ath9k_uses_beacons(vif->type)) { |
1083 | if (sc->nbcnvifs >= ATH_BCBUF) { | 1065 | if (sc->nbcnvifs >= ATH_BCBUF) { |
diff --git a/drivers/net/wireless/mwifiex/uap_cmd.c b/drivers/net/wireless/mwifiex/uap_cmd.c index 8173ab66066d..89f9a2a45de3 100644 --- a/drivers/net/wireless/mwifiex/uap_cmd.c +++ b/drivers/net/wireless/mwifiex/uap_cmd.c | |||
@@ -27,6 +27,17 @@ int mwifiex_set_secure_params(struct mwifiex_private *priv, | |||
27 | struct cfg80211_ap_settings *params) { | 27 | struct cfg80211_ap_settings *params) { |
28 | int i; | 28 | int i; |
29 | 29 | ||
30 | if (!params->privacy) { | ||
31 | bss_config->protocol = PROTOCOL_NO_SECURITY; | ||
32 | bss_config->key_mgmt = KEY_MGMT_NONE; | ||
33 | bss_config->wpa_cfg.length = 0; | ||
34 | priv->sec_info.wep_enabled = 0; | ||
35 | priv->sec_info.wpa_enabled = 0; | ||
36 | priv->sec_info.wpa2_enabled = 0; | ||
37 | |||
38 | return 0; | ||
39 | } | ||
40 | |||
30 | switch (params->auth_type) { | 41 | switch (params->auth_type) { |
31 | case NL80211_AUTHTYPE_OPEN_SYSTEM: | 42 | case NL80211_AUTHTYPE_OPEN_SYSTEM: |
32 | bss_config->auth_mode = WLAN_AUTH_OPEN; | 43 | bss_config->auth_mode = WLAN_AUTH_OPEN; |
diff --git a/drivers/net/wireless/rndis_wlan.c b/drivers/net/wireless/rndis_wlan.c index 2e9e6af21362..dfcd02ab6cae 100644 --- a/drivers/net/wireless/rndis_wlan.c +++ b/drivers/net/wireless/rndis_wlan.c | |||
@@ -2110,7 +2110,7 @@ resize_buf: | |||
2110 | while (check_bssid_list_item(bssid, bssid_len, buf, len)) { | 2110 | while (check_bssid_list_item(bssid, bssid_len, buf, len)) { |
2111 | if (rndis_bss_info_update(usbdev, bssid) && match_bssid && | 2111 | if (rndis_bss_info_update(usbdev, bssid) && match_bssid && |
2112 | matched) { | 2112 | matched) { |
2113 | if (!ether_addr_equal(bssid->mac, match_bssid)) | 2113 | if (ether_addr_equal(bssid->mac, match_bssid)) |
2114 | *matched = true; | 2114 | *matched = true; |
2115 | } | 2115 | } |
2116 | 2116 | ||