diff options
| author | Johannes Berg <johannes.berg@intel.com> | 2010-08-10 09:46:38 +0200 | 
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2010-08-16 16:45:11 -0400 | 
| commit | 97359d1235eaf634fe706c9faa6e40181cc95fb8 (patch) | |
| tree | 5799455c94622eaa6a4fb065bd3b5c350bb705e0 /drivers/net/wireless/wl12xx/wl1271_main.c | |
| parent | 915a824e30c503157c38115eb6a85f60bb653738 (diff) | |
| download | olio-linux-3.10-97359d1235eaf634fe706c9faa6e40181cc95fb8.tar.xz olio-linux-3.10-97359d1235eaf634fe706c9faa6e40181cc95fb8.zip  | |
mac80211: use cipher suite selectors
Currently, mac80211 translates the cfg80211
cipher suite selectors into ALG_* values.
That isn't all too useful, and some drivers
benefit from the distinction between WEP40
and WEP104 as well. Therefore, convert it
all to use the cipher suite selectors.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: Gertjan van Wingerde <gwingerde@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_main.c')
| -rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_main.c | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c index 9d68f0012f0..30194c0f36a 100644 --- a/drivers/net/wireless/wl12xx/wl1271_main.c +++ b/drivers/net/wireless/wl12xx/wl1271_main.c @@ -1439,7 +1439,7 @@ static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,  	wl1271_debug(DEBUG_CRYPT, "CMD: 0x%x", cmd);  	wl1271_dump(DEBUG_CRYPT, "ADDR: ", addr, ETH_ALEN);  	wl1271_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x", -		     key_conf->alg, key_conf->keyidx, +		     key_conf->cipher, key_conf->keyidx,  		     key_conf->keylen, key_conf->flags);  	wl1271_dump(DEBUG_CRYPT, "KEY: ", key_conf->key, key_conf->keylen); @@ -1455,20 +1455,21 @@ static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,  	if (ret < 0)  		goto out_unlock; -	switch (key_conf->alg) { -	case ALG_WEP: +	switch (key_conf->cipher) { +	case WLAN_CIPHER_SUITE_WEP40: +	case WLAN_CIPHER_SUITE_WEP104:  		key_type = KEY_WEP;  		key_conf->hw_key_idx = key_conf->keyidx;  		break; -	case ALG_TKIP: +	case WLAN_CIPHER_SUITE_TKIP:  		key_type = KEY_TKIP;  		key_conf->hw_key_idx = key_conf->keyidx;  		tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);  		tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);  		break; -	case ALG_CCMP: +	case WLAN_CIPHER_SUITE_CCMP:  		key_type = KEY_AES;  		key_conf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; @@ -1476,7 +1477,7 @@ static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,  		tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);  		break;  	default: -		wl1271_error("Unknown key algo 0x%x", key_conf->alg); +		wl1271_error("Unknown key algo 0x%x", key_conf->cipher);  		ret = -EOPNOTSUPP;  		goto out_sleep;  |