mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
staging: rtl8188eu: &array[0] -> array
Change '&array[0]' to just 'array' in rtw_reset_securitypriv(). Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d8e2a9a58e
commit
46c36e5a03
|
|
@ -47,7 +47,7 @@ void rtw_reset_securitypriv(struct adapter *adapter)
|
|||
* the countermeasure is trigger, the driver have to disconnect
|
||||
* with AP for 60 seconds.
|
||||
*/
|
||||
memcpy(&backup_pmkid[0], &adapter->securitypriv.PMKIDList[0], sizeof(struct rt_pmkid_list) * NUM_PMKID_CACHE);
|
||||
memcpy(backup_pmkid, adapter->securitypriv.PMKIDList, sizeof(struct rt_pmkid_list) * NUM_PMKID_CACHE);
|
||||
backup_index = adapter->securitypriv.PMKIDIndex;
|
||||
backup_counter = adapter->securitypriv.btkip_countermeasure;
|
||||
backup_time = adapter->securitypriv.btkip_countermeasure_time;
|
||||
|
|
@ -56,7 +56,7 @@ void rtw_reset_securitypriv(struct adapter *adapter)
|
|||
/* Restore the PMK information to securitypriv structure
|
||||
* for the following connection.
|
||||
*/
|
||||
memcpy(&adapter->securitypriv.PMKIDList[0], &backup_pmkid[0],
|
||||
memcpy(adapter->securitypriv.PMKIDList, backup_pmkid,
|
||||
sizeof(struct rt_pmkid_list) * NUM_PMKID_CACHE);
|
||||
adapter->securitypriv.PMKIDIndex = backup_index;
|
||||
adapter->securitypriv.btkip_countermeasure = backup_counter;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user