mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
Staging: rtl8192e: Rename variable PMKIDList
Rename variable PMKIDList to pmkid_list to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240227044157.407379-5-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
020d29db33
commit
d674c6237d
|
|
@ -1264,7 +1264,7 @@ struct rtllib_device {
|
|||
|
||||
struct sw_cam_table swcamtable[TOTAL_CAM_ENTRY];
|
||||
|
||||
struct rt_pmkid_list PMKIDList[NUM_PMKID_CACHE];
|
||||
struct rt_pmkid_list pmkid_list[NUM_PMKID_CACHE];
|
||||
|
||||
/* Fragmentation structures */
|
||||
struct rtllib_frag_entry frag_cache[17][RTLLIB_FRAG_CACHE_LEN];
|
||||
|
|
|
|||
|
|
@ -669,8 +669,8 @@ static inline int sec_is_in_pmkid_list(struct rtllib_device *ieee, u8 *bssid)
|
|||
int i = 0;
|
||||
|
||||
do {
|
||||
if ((ieee->PMKIDList[i].used) &&
|
||||
(memcmp(ieee->PMKIDList[i].bssid, bssid, ETH_ALEN) == 0))
|
||||
if ((ieee->pmkid_list[i].used) &&
|
||||
(memcmp(ieee->pmkid_list[i].bssid, bssid, ETH_ALEN) == 0))
|
||||
break;
|
||||
i++;
|
||||
} while (i < NUM_PMKID_CACHE);
|
||||
|
|
@ -881,7 +881,7 @@ rtllib_association_req(struct rtllib_network *beacon,
|
|||
tag = skb_put(skb, 18);
|
||||
*tag = 1;
|
||||
*(tag + 1) = 0;
|
||||
memcpy((tag + 2), &ieee->PMKIDList[pmk_cache_idx].PMKID,
|
||||
memcpy((tag + 2), &ieee->pmkid_list[pmk_cache_idx].PMKID,
|
||||
16);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user