mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
Staging: rtl8192e: Rename variable Turbo_Enable
Rename variable Turbo_Enable to turbo_enable 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-6-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d674c6237d
commit
9880998b9b
|
|
@ -948,7 +948,7 @@ struct rtllib_network {
|
|||
|
||||
u8 wmm_info;
|
||||
struct rtllib_wmm_ac_param wmm_param[4];
|
||||
u8 Turbo_Enable;
|
||||
u8 turbo_enable;
|
||||
u16 CountryIeLen;
|
||||
u8 CountryIeBuf[MAX_IE_LEN];
|
||||
struct bss_ht bssht;
|
||||
|
|
|
|||
|
|
@ -1685,7 +1685,7 @@ static void rtllib_parse_mife_generic(struct rtllib_device *ieee,
|
|||
info_element->data[2] == 0x4c &&
|
||||
info_element->data[3] == 0x01 &&
|
||||
info_element->data[4] == 0x02)
|
||||
network->Turbo_Enable = 1;
|
||||
network->turbo_enable = 1;
|
||||
|
||||
if (*tmp_htcap_len == 0) {
|
||||
if (info_element->len >= 4 &&
|
||||
|
|
@ -2180,7 +2180,7 @@ static inline int rtllib_network_init(
|
|||
network->realtek_cap_exit = false;
|
||||
network->marvell_cap_exist = false;
|
||||
network->airgo_cap_exist = false;
|
||||
network->Turbo_Enable = 0;
|
||||
network->turbo_enable = 0;
|
||||
network->SignalStrength = stats->SignalStrength;
|
||||
network->RSSI = stats->SignalStrength;
|
||||
network->CountryIeLen = 0;
|
||||
|
|
@ -2340,7 +2340,7 @@ static inline void update_network(struct rtllib_device *ieee,
|
|||
|
||||
dst->SignalStrength = src->SignalStrength;
|
||||
dst->RSSI = src->RSSI;
|
||||
dst->Turbo_Enable = src->Turbo_Enable;
|
||||
dst->turbo_enable = src->turbo_enable;
|
||||
|
||||
dst->CountryIeLen = src->CountryIeLen;
|
||||
memcpy(dst->CountryIeBuf, src->CountryIeBuf, src->CountryIeLen);
|
||||
|
|
|
|||
|
|
@ -707,7 +707,7 @@ rtllib_association_req(struct rtllib_network *beacon,
|
|||
2 : 0);
|
||||
|
||||
unsigned int wmm_info_len = beacon->qos_data.supported ? 9 : 0;
|
||||
unsigned int turbo_info_len = beacon->Turbo_Enable ? 9 : 0;
|
||||
unsigned int turbo_info_len = beacon->turbo_enable ? 9 : 0;
|
||||
|
||||
int len = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user