aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2010-08-18 09:35:21 -0700
committerJohn W. Linville <linville@tuxdriver.com>2010-08-24 16:32:05 -0400
commit54c8067a4a0606f466faf0f30b16684b00060e70 (patch)
treef499545f4e9355e0ed1886336ce9544cbec599cc /drivers/net
parentath9k_htc: Add support for bluetooth coexistence. (diff)
downloadlinux-dev-54c8067a4a0606f466faf0f30b16684b00060e70.tar.xz
linux-dev-54c8067a4a0606f466faf0f30b16684b00060e70.zip
iwlagn: do not check for AP mode for WEP keys
Even when we configure WEP keys in AP mode ones without a station pointer are default keys, so don't check for AP mode here. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-agn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c
index 40b82d9f309e..5b967c014b41 100644
--- a/drivers/net/wireless/iwlwifi/iwl-agn.c
+++ b/drivers/net/wireless/iwlwifi/iwl-agn.c
@@ -3450,7 +3450,7 @@ static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
*/
if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
- !sta && vif->type != NL80211_IFTYPE_AP) {
+ !sta) {
if (cmd == SET_KEY)
is_default_wep_key = !priv->key_mapping_key;
else