Commit 38acde3c authored by Edward Lu's avatar Edward Lu Committed by Kalle Valo

ath6kl: Fix a typo in ath6k context

Signed-off-by: default avatarEdward Lu <elu@qca.qualcomm.com>
Signed-off-by: default avatarJouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 6b5e5d25
...@@ -168,7 +168,8 @@ static int ath6kl_set_auth_type(struct ath6kl *ar, ...@@ -168,7 +168,8 @@ static int ath6kl_set_auth_type(struct ath6kl *ar,
static int ath6kl_set_cipher(struct ath6kl *ar, u32 cipher, bool ucast) static int ath6kl_set_cipher(struct ath6kl *ar, u32 cipher, bool ucast)
{ {
u8 *ar_cipher = ucast ? &ar->prwise_crypto : &ar->grp_crypto; u8 *ar_cipher = ucast ? &ar->prwise_crypto : &ar->grp_crypto;
u8 *ar_cipher_len = ucast ? &ar->prwise_crypto_len : &ar->grp_crpto_len; u8 *ar_cipher_len = ucast ? &ar->prwise_crypto_len :
&ar->grp_crypto_len;
ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: cipher 0x%x, ucast %u\n", ath6kl_dbg(ATH6KL_DBG_WLAN_CFG, "%s: cipher 0x%x, ucast %u\n",
__func__, cipher, ucast); __func__, cipher, ucast);
...@@ -371,14 +372,14 @@ static int ath6kl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev, ...@@ -371,14 +372,14 @@ static int ath6kl_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
__func__, __func__,
ar->auth_mode, ar->dot11_auth_mode, ar->prwise_crypto, ar->auth_mode, ar->dot11_auth_mode, ar->prwise_crypto,
ar->prwise_crypto_len, ar->grp_crypto, ar->prwise_crypto_len, ar->grp_crypto,
ar->grp_crpto_len, ar->ch_hint); ar->grp_crypto_len, ar->ch_hint);
ar->reconnect_flag = 0; ar->reconnect_flag = 0;
status = ath6kl_wmi_connect_cmd(ar->wmi, ar->nw_type, status = ath6kl_wmi_connect_cmd(ar->wmi, ar->nw_type,
ar->dot11_auth_mode, ar->auth_mode, ar->dot11_auth_mode, ar->auth_mode,
ar->prwise_crypto, ar->prwise_crypto,
ar->prwise_crypto_len, ar->prwise_crypto_len,
ar->grp_crypto, ar->grp_crpto_len, ar->grp_crypto, ar->grp_crypto_len,
ar->ssid_len, ar->ssid, ar->ssid_len, ar->ssid,
ar->req_bssid, ar->ch_hint, ar->req_bssid, ar->ch_hint,
ar->connect_ctrl_flags); ar->connect_ctrl_flags);
...@@ -688,7 +689,7 @@ void ath6kl_cfg80211_disconnect_event(struct ath6kl *ar, u8 reason, ...@@ -688,7 +689,7 @@ void ath6kl_cfg80211_disconnect_event(struct ath6kl *ar, u8 reason,
ar->prwise_crypto, ar->prwise_crypto,
ar->prwise_crypto_len, ar->prwise_crypto_len,
ar->grp_crypto, ar->grp_crypto,
ar->grp_crpto_len, ar->grp_crypto_len,
ar->ssid_len, ar->ssid_len,
ar->ssid, ar->ssid,
ar->req_bssid, ar->req_bssid,
...@@ -1277,13 +1278,13 @@ static int ath6kl_cfg80211_join_ibss(struct wiphy *wiphy, ...@@ -1277,13 +1278,13 @@ static int ath6kl_cfg80211_join_ibss(struct wiphy *wiphy,
__func__, __func__,
ar->auth_mode, ar->dot11_auth_mode, ar->prwise_crypto, ar->auth_mode, ar->dot11_auth_mode, ar->prwise_crypto,
ar->prwise_crypto_len, ar->grp_crypto, ar->prwise_crypto_len, ar->grp_crypto,
ar->grp_crpto_len, ar->ch_hint); ar->grp_crypto_len, ar->ch_hint);
status = ath6kl_wmi_connect_cmd(ar->wmi, ar->nw_type, status = ath6kl_wmi_connect_cmd(ar->wmi, ar->nw_type,
ar->dot11_auth_mode, ar->auth_mode, ar->dot11_auth_mode, ar->auth_mode,
ar->prwise_crypto, ar->prwise_crypto,
ar->prwise_crypto_len, ar->prwise_crypto_len,
ar->grp_crypto, ar->grp_crpto_len, ar->grp_crypto, ar->grp_crypto_len,
ar->ssid_len, ar->ssid, ar->ssid_len, ar->ssid,
ar->req_bssid, ar->ch_hint, ar->req_bssid, ar->ch_hint,
ar->connect_ctrl_flags); ar->connect_ctrl_flags);
......
...@@ -380,7 +380,7 @@ struct ath6kl { ...@@ -380,7 +380,7 @@ struct ath6kl {
u8 prwise_crypto; u8 prwise_crypto;
u8 prwise_crypto_len; u8 prwise_crypto_len;
u8 grp_crypto; u8 grp_crypto;
u8 grp_crpto_len; u8 grp_crypto_len;
u8 def_txkey_index; u8 def_txkey_index;
struct ath6kl_wep_key wep_key_list[WMI_MAX_KEY_INDEX + 1]; struct ath6kl_wep_key wep_key_list[WMI_MAX_KEY_INDEX + 1];
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
......
...@@ -85,7 +85,7 @@ void ath6kl_init_profile_info(struct ath6kl *ar) ...@@ -85,7 +85,7 @@ void ath6kl_init_profile_info(struct ath6kl *ar)
ar->prwise_crypto = NONE_CRYPT; ar->prwise_crypto = NONE_CRYPT;
ar->prwise_crypto_len = 0; ar->prwise_crypto_len = 0;
ar->grp_crypto = NONE_CRYPT; ar->grp_crypto = NONE_CRYPT;
ar->grp_crpto_len = 0; ar->grp_crypto_len = 0;
memset(ar->wep_key_list, 0, sizeof(ar->wep_key_list)); memset(ar->wep_key_list, 0, sizeof(ar->wep_key_list));
memset(ar->req_bssid, 0, sizeof(ar->req_bssid)); memset(ar->req_bssid, 0, sizeof(ar->req_bssid));
memset(ar->bssid, 0, sizeof(ar->bssid)); memset(ar->bssid, 0, sizeof(ar->bssid));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment