Commit 4a8ce2fd authored by Sujith Manoharan's avatar Sujith Manoharan Committed by Kalle Valo

ath6kl: Remove redundant pointer check

'params' is already used earlier and there is no point
in checking for a NULL condition again.
Signed-off-by: default avatarSujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 866dc886
...@@ -983,6 +983,7 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -983,6 +983,7 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
struct ath6kl *ar = ath6kl_priv(ndev); struct ath6kl *ar = ath6kl_priv(ndev);
struct ath6kl_vif *vif = netdev_priv(ndev); struct ath6kl_vif *vif = netdev_priv(ndev);
struct ath6kl_key *key = NULL; struct ath6kl_key *key = NULL;
int seq_len;
u8 key_usage; u8 key_usage;
u8 key_type; u8 key_type;
...@@ -1011,8 +1012,7 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1011,8 +1012,7 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
else else
key_usage = GROUP_USAGE; key_usage = GROUP_USAGE;
if (params) { seq_len = params->seq_len;
int seq_len = params->seq_len;
if (params->cipher == WLAN_CIPHER_SUITE_SMS4 && if (params->cipher == WLAN_CIPHER_SUITE_SMS4 &&
seq_len > ATH6KL_KEY_SEQ_LEN) { seq_len > ATH6KL_KEY_SEQ_LEN) {
/* Only first half of the WPI PN is configured */ /* Only first half of the WPI PN is configured */
...@@ -1027,7 +1027,6 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1027,7 +1027,6 @@ static int ath6kl_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
key->seq_len = seq_len; key->seq_len = seq_len;
memcpy(key->seq, params->seq, key->seq_len); memcpy(key->seq, params->seq, key->seq_len);
key->cipher = params->cipher; key->cipher = params->cipher;
}
switch (key->cipher) { switch (key->cipher) {
case WLAN_CIPHER_SUITE_WEP40: case WLAN_CIPHER_SUITE_WEP40:
......
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