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.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging driver fixes from Greg KH:
"Here are two rtl8192e staging driver fixes for reported problems.

Both of these have been in linux-next for a while with no reported
issues"

* tag 'staging-5.12-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging: rtl8192e: Change state information from u16 to u8
staging: rtl8192e: Fix incorrect source in memcpy()

+2 -2
+1 -1
drivers/staging/rtl8192e/rtllib.h
··· 1105 1105 bool bWithAironetIE; 1106 1106 bool bCkipSupported; 1107 1107 bool bCcxRmEnable; 1108 - u16 CcxRmState[2]; 1108 + u8 CcxRmState[2]; 1109 1109 bool bMBssidValid; 1110 1110 u8 MBssidMask; 1111 1111 u8 MBssid[ETH_ALEN];
+1 -1
drivers/staging/rtl8192e/rtllib_rx.c
··· 1967 1967 info_element->data[2] == 0x96 && 1968 1968 info_element->data[3] == 0x01) { 1969 1969 if (info_element->len == 6) { 1970 - memcpy(network->CcxRmState, &info_element[4], 2); 1970 + memcpy(network->CcxRmState, &info_element->data[4], 2); 1971 1971 if (network->CcxRmState[0] != 0) 1972 1972 network->bCcxRmEnable = true; 1973 1973 else