staging: rtl8188eu: rename struct field Bssid -> bssid
Rename field of struct rt_pmkid_list to avoid camel case. Bssid -> bssid Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200929062847.23985-3-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d23519c0a7
commit
43320adc72
@ -1673,7 +1673,7 @@ static int SecIsInPMKIDList(struct adapter *Adapter, u8 *bssid)
|
||||
|
||||
do {
|
||||
if ((psecuritypriv->PMKIDList[i].bUsed) &&
|
||||
(!memcmp(psecuritypriv->PMKIDList[i].Bssid, bssid, ETH_ALEN)))
|
||||
(!memcmp(psecuritypriv->PMKIDList[i].bssid, bssid, ETH_ALEN)))
|
||||
break;
|
||||
} while (++i < NUM_PMKID_CACHE);
|
||||
|
||||
|
@ -82,7 +82,7 @@ union Keytype {
|
||||
|
||||
struct rt_pmkid_list {
|
||||
u8 bUsed;
|
||||
u8 Bssid[6];
|
||||
u8 bssid[6];
|
||||
u8 PMKID[16];
|
||||
u8 SsidBuf[33];
|
||||
u8 *ssid_octet;
|
||||
|
@ -778,7 +778,7 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
||||
|
||||
/* overwrite PMKID */
|
||||
for (j = 0; j < NUM_PMKID_CACHE; j++) {
|
||||
if (!memcmp(psecuritypriv->PMKIDList[j].Bssid, strIssueBssid, ETH_ALEN)) {
|
||||
if (!memcmp(psecuritypriv->PMKIDList[j].bssid, strIssueBssid, ETH_ALEN)) {
|
||||
/* BSSID is matched, the same AP => rewrite with new PMKID. */
|
||||
DBG_88E("[%s] BSSID exists in the PMKList.\n", __func__);
|
||||
memcpy(psecuritypriv->PMKIDList[j].PMKID, pPMK->pmkid, IW_PMKID_LEN);
|
||||
@ -794,7 +794,7 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
||||
DBG_88E("[%s] Use the new entry index = %d for this PMKID.\n",
|
||||
__func__, psecuritypriv->PMKIDIndex);
|
||||
|
||||
memcpy(psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].Bssid, strIssueBssid, ETH_ALEN);
|
||||
memcpy(psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].bssid, strIssueBssid, ETH_ALEN);
|
||||
memcpy(psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].PMKID, pPMK->pmkid, IW_PMKID_LEN);
|
||||
|
||||
psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].bUsed = true;
|
||||
@ -806,9 +806,9 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
||||
DBG_88E("[%s] IW_PMKSA_REMOVE!\n", __func__);
|
||||
ret = true;
|
||||
for (j = 0; j < NUM_PMKID_CACHE; j++) {
|
||||
if (!memcmp(psecuritypriv->PMKIDList[j].Bssid, strIssueBssid, ETH_ALEN)) {
|
||||
if (!memcmp(psecuritypriv->PMKIDList[j].bssid, strIssueBssid, ETH_ALEN)) {
|
||||
/* BSSID is matched, the same AP => Remove this PMKID information and reset it. */
|
||||
eth_zero_addr(psecuritypriv->PMKIDList[j].Bssid);
|
||||
eth_zero_addr(psecuritypriv->PMKIDList[j].bssid);
|
||||
psecuritypriv->PMKIDList[j].bUsed = false;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user