mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
Staging: rtl8192e: Rename variable bUseShortGI
Rename variable bUseShortGI to use_short_gi to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/20240612032230.9738-14-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bb0d74d418
commit
128fb2e925
@ -859,7 +859,7 @@ static u8 _rtl92e_query_is_short(u8 TxHT, u8 TxRate, struct cb_desc *tcb_desc)
|
||||
{
|
||||
u8 tmp_Short;
|
||||
|
||||
tmp_Short = (TxHT == 1) ? ((tcb_desc->bUseShortGI) ? 1 : 0) :
|
||||
tmp_Short = (TxHT == 1) ? ((tcb_desc->use_short_gi) ? 1 : 0) :
|
||||
((tcb_desc->bUseShortPreamble) ? 1 : 0);
|
||||
if (TxHT == 1 && TxRate != DESC90_RATEMCS15)
|
||||
tmp_Short = 0;
|
||||
|
@ -112,7 +112,7 @@ struct cb_desc {
|
||||
/* Tx Firmware Related flags (10-11)*/
|
||||
u8 cts_enable:1;
|
||||
u8 rts_enable:1;
|
||||
u8 bUseShortGI:1;
|
||||
u8 use_short_gi:1;
|
||||
u8 bUseShortPreamble:1;
|
||||
u8 tx_enable_fw_calc_dur:1;
|
||||
u8 ampdu_enable:1;
|
||||
|
@ -335,15 +335,15 @@ static void rtllib_query_HTCapShortGI(struct rtllib_device *ieee,
|
||||
{
|
||||
struct rt_hi_throughput *ht_info = ieee->ht_info;
|
||||
|
||||
tcb_desc->bUseShortGI = false;
|
||||
tcb_desc->use_short_gi = false;
|
||||
|
||||
if (!ht_info->current_ht_support || !ht_info->enable_ht)
|
||||
return;
|
||||
|
||||
if (ht_info->cur_bw_40mhz && ht_info->cur_short_gi_40mhz)
|
||||
tcb_desc->bUseShortGI = true;
|
||||
tcb_desc->use_short_gi = true;
|
||||
else if (!ht_info->cur_bw_40mhz && ht_info->cur_short_gi_20mhz)
|
||||
tcb_desc->bUseShortGI = true;
|
||||
tcb_desc->use_short_gi = true;
|
||||
}
|
||||
|
||||
static void rtllib_query_BandwidthMode(struct rtllib_device *ieee,
|
||||
|
Loading…
Reference in New Issue
Block a user