mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 19:49:33 -04:00
Staging: rtl8192e: Rename variable bUseShortPreamble
Rename variable bUseShortPreamble to use_short_preamble 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-20-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8b3d9e8c34
commit
c74feb589c
@@ -860,7 +860,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->use_short_gi) ? 1 : 0) :
|
||||
((tcb_desc->bUseShortPreamble) ? 1 : 0);
|
||||
((tcb_desc->use_short_preamble) ? 1 : 0);
|
||||
if (TxHT == 1 && TxRate != DESC90_RATEMCS15)
|
||||
tmp_Short = 0;
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@ struct cb_desc {
|
||||
u8 cts_enable:1;
|
||||
u8 rts_enable:1;
|
||||
u8 use_short_gi:1;
|
||||
u8 bUseShortPreamble:1;
|
||||
u8 use_short_preamble:1;
|
||||
u8 tx_enable_fw_calc_dur:1;
|
||||
u8 ampdu_enable:1;
|
||||
u8 bRTSSTBC:1;
|
||||
|
||||
@@ -322,12 +322,12 @@ static void rtllib_tx_query_agg_cap(struct rtllib_device *ieee,
|
||||
static void rtllib_query_short_preamble_mode(struct rtllib_device *ieee,
|
||||
struct cb_desc *tcb_desc)
|
||||
{
|
||||
tcb_desc->bUseShortPreamble = false;
|
||||
tcb_desc->use_short_preamble = false;
|
||||
if (tcb_desc->data_rate == 2)
|
||||
return;
|
||||
else if (ieee->current_network.capability &
|
||||
WLAN_CAPABILITY_SHORT_PREAMBLE)
|
||||
tcb_desc->bUseShortPreamble = true;
|
||||
tcb_desc->use_short_preamble = true;
|
||||
}
|
||||
|
||||
static void rtllib_query_ht_cap_short_gi(struct rtllib_device *ieee,
|
||||
@@ -440,7 +440,7 @@ static void rtllib_query_protectionmode(struct rtllib_device *ieee,
|
||||
goto NO_PROTECTION;
|
||||
}
|
||||
if (ieee->current_network.capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
|
||||
tcb_desc->bUseShortPreamble = true;
|
||||
tcb_desc->use_short_preamble = true;
|
||||
return;
|
||||
NO_PROTECTION:
|
||||
tcb_desc->rts_enable = false;
|
||||
|
||||
Reference in New Issue
Block a user