Staging: rtl8192e: Rename variable bUsed
Rename variable bUsed to used to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20231225202314.31869-2-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fbfb131ef8
commit
d65a2fc00f
@ -1164,7 +1164,7 @@ struct rt_pmkid_list {
|
||||
u8 Bssid[ETH_ALEN];
|
||||
u8 PMKID[16];
|
||||
u8 SsidBuf[33];
|
||||
u8 bUsed;
|
||||
u8 used;
|
||||
};
|
||||
|
||||
/*************** DRIVER STATUS *****/
|
||||
|
@ -670,7 +670,7 @@ static inline int SecIsInPMKIDList(struct rtllib_device *ieee, u8 *bssid)
|
||||
int i = 0;
|
||||
|
||||
do {
|
||||
if ((ieee->PMKIDList[i].bUsed) &&
|
||||
if ((ieee->PMKIDList[i].used) &&
|
||||
(memcmp(ieee->PMKIDList[i].Bssid, bssid, ETH_ALEN) == 0))
|
||||
break;
|
||||
i++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user