]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
staging: rtl8188eu: &array[0] -> array
authorMichael Straube <straube.linux@gmail.com>
Mon, 28 Jan 2019 09:51:36 +0000 (10:51 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jan 2019 14:40:58 +0000 (15:40 +0100)
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>
drivers/staging/rtl8188eu/os_dep/mlme_linux.c

index 03d4cfefc9bc18a0cc0332add42b1034bdfe8804..caba3fe0250c62cf4cdbb46becfd91caf85c38e4 100644 (file)
@@ -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;