Merge tag 'staging-5.4-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging driver fix from Greg KH: "Here is a single staging driver fix, for the wlan-ng driver, that resolves a reported issue. It is been in linux-next for a while with no reported issues" * tag 'staging-5.4-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: staging: wlan-ng: fix exit return when sme->key_idx >= NUM_WEPKEYS
This commit is contained in:
@@ -469,10 +469,8 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
|
||||
/* Set the encryption - we only support wep */
|
||||
if (is_wep) {
|
||||
if (sme->key) {
|
||||
if (sme->key_idx >= NUM_WEPKEYS) {
|
||||
err = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
if (sme->key_idx >= NUM_WEPKEYS)
|
||||
return -EINVAL;
|
||||
|
||||
result = prism2_domibset_uint32(wlandev,
|
||||
DIDMIB_DOT11SMT_PRIVACYTABLE_WEPDEFAULTKEYID,
|
||||
|
Reference in New Issue
Block a user