mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
staging: rtl8192e: rename variable HTInitializeBssDesc
Coding style issue, checkpatch Avoid CamelCase, rename it. HTInitializeBssDesc -> ht_initialize_bss_desc Signed-off-by: Gary Rookard <garyrookard@fastmail.org> Link: https://lore.kernel.org/r/20231221183413.8349-2-garyrookard@fastmail.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5090a4bc2a
commit
6911a08ce7
|
|
@ -543,7 +543,7 @@ void ht_initialize_ht_info(struct rtllib_device *ieee)
|
|||
}
|
||||
}
|
||||
|
||||
void HTInitializeBssDesc(struct bss_ht *pBssHT)
|
||||
void ht_initialize_bss_desc(struct bss_ht *pBssHT)
|
||||
{
|
||||
pBssHT->bd_support_ht = false;
|
||||
memset(pBssHT->bd_ht_cap_buf, 0, sizeof(pBssHT->bd_ht_cap_buf));
|
||||
|
|
|
|||
|
|
@ -1758,7 +1758,7 @@ void ht_construct_rt2rt_agg_element(struct rtllib_device *ieee,
|
|||
u8 *posRT2RTAgg, u8 *len);
|
||||
void ht_on_assoc_rsp(struct rtllib_device *ieee);
|
||||
void ht_initialize_ht_info(struct rtllib_device *ieee);
|
||||
void HTInitializeBssDesc(struct bss_ht *pBssHT);
|
||||
void ht_initialize_bss_desc(struct bss_ht *pBssHT);
|
||||
void HTResetSelfAndSavePeerSetting(struct rtllib_device *ieee,
|
||||
struct rtllib_network *pNetwork);
|
||||
void HT_update_self_and_peer_setting(struct rtllib_device *ieee,
|
||||
|
|
|
|||
|
|
@ -2189,7 +2189,7 @@ static inline int rtllib_network_init(
|
|||
network->RSSI = stats->SignalStrength;
|
||||
network->CountryIeLen = 0;
|
||||
memset(network->CountryIeBuf, 0, MAX_IE_LEN);
|
||||
HTInitializeBssDesc(&network->bssht);
|
||||
ht_initialize_bss_desc(&network->bssht);
|
||||
network->flags |= NETWORK_HAS_CCK;
|
||||
|
||||
network->wpa_ie_len = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user