aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu
diff options
context:
space:
mode:
authorMichael Straube <straube.linux@gmail.com>2019-01-28 10:51:36 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-01-30 15:40:58 +0100
commit46c36e5a033860e8a4d619355b519dbdf80c976a (patch)
tree9e80f3e46a1ec611a59284b43931c5fa5803a89e /drivers/staging/rtl8188eu
parentstaging: rtl8188eu: remove unncessary asignment to cleanup long line (diff)
downloadlinux-dev-46c36e5a033860e8a4d619355b519dbdf80c976a.tar.xz
linux-dev-46c36e5a033860e8a4d619355b519dbdf80c976a.zip
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>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r--drivers/staging/rtl8188eu/os_dep/mlme_linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/os_dep/mlme_linux.c b/drivers/staging/rtl8188eu/os_dep/mlme_linux.c
index 03d4cfefc9bc..caba3fe0250c 100644
--- a/drivers/staging/rtl8188eu/os_dep/mlme_linux.c
+++ b/drivers/staging/rtl8188eu/os_dep/mlme_linux.c
@@ -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;