Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -4
+2 -4
drivers/staging/wlan-ng/cfg80211.c
··· 469 469 /* Set the encryption - we only support wep */ 470 470 if (is_wep) { 471 471 if (sme->key) { 472 - if (sme->key_idx >= NUM_WEPKEYS) { 473 - err = -EINVAL; 474 - goto exit; 475 - } 472 + if (sme->key_idx >= NUM_WEPKEYS) 473 + return -EINVAL; 476 474 477 475 result = prism2_domibset_uint32(wlandev, 478 476 DIDMIB_DOT11SMT_PRIVACYTABLE_WEPDEFAULTKEYID,