staging: rtl8188eu: rename struct field bUsed -> used
Rename field of struct rt_pmkid_list to avoid camel case. bUsed -> used Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200929062847.23985-5-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a89b10ad91
commit
00a367bc45
|
@ -1672,7 +1672,7 @@ static int SecIsInPMKIDList(struct adapter *Adapter, u8 *bssid)
|
|||
int i = 0;
|
||||
|
||||
do {
|
||||
if ((psecuritypriv->PMKIDList[i].bUsed) &&
|
||||
if ((psecuritypriv->PMKIDList[i].used) &&
|
||||
(!memcmp(psecuritypriv->PMKIDList[i].bssid, bssid, ETH_ALEN)))
|
||||
break;
|
||||
} while (++i < NUM_PMKID_CACHE);
|
||||
|
|
|
@ -81,7 +81,7 @@ union Keytype {
|
|||
};
|
||||
|
||||
struct rt_pmkid_list {
|
||||
u8 bUsed;
|
||||
u8 used;
|
||||
u8 bssid[ETH_ALEN];
|
||||
u8 PMKID[16];
|
||||
u8 SsidBuf[33];
|
||||
|
|
|
@ -782,7 +782,7 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
|||
/* 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);
|
||||
psecuritypriv->PMKIDList[j].bUsed = true;
|
||||
psecuritypriv->PMKIDList[j].used = true;
|
||||
psecuritypriv->PMKIDIndex = j + 1;
|
||||
blInserted = true;
|
||||
break;
|
||||
|
@ -797,7 +797,7 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
|||
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;
|
||||
psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].used = true;
|
||||
psecuritypriv->PMKIDIndex++;
|
||||
if (psecuritypriv->PMKIDIndex == 16)
|
||||
psecuritypriv->PMKIDIndex = 0;
|
||||
|
@ -809,7 +809,7 @@ static int rtw_wx_set_pmkid(struct net_device *dev,
|
|||
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);
|
||||
psecuritypriv->PMKIDList[j].bUsed = false;
|
||||
psecuritypriv->PMKIDList[j].used = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue