staging: rtl8192e: renamed variable bRegSuppCCK

Coding style issue, checkpatch Avoid CamelCase,
rename it bRegSuppCCK -> reg_supp_cck

Signed-off-by: Gary Rookard <garyrookard@fastmail.org>
Link: https://lore.kernel.org/r/20231205231623.23070-5-garyrookard@fastmail.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Gary Rookard 2023-12-05 18:16:22 -05:00 committed by Greg Kroah-Hartman
parent c4dc2c60ce
commit 41c9332231
2 changed files with 5 additions and 5 deletions

View File

@ -100,7 +100,7 @@ struct rt_hi_throughput {
u8 bCurShortGI40MHz;
u8 reg_short_gi_20mhz;
u8 bCurShortGI20MHz;
u8 bRegSuppCCK;
u8 reg_supp_cck;
u8 bCurSuppCCK;
enum ht_spec_ver ePeerHTSpecVer;
struct ht_capab_ele SelfHTCap;

View File

@ -77,9 +77,9 @@ void ht_update_default_setting(struct rtllib_device *ieee)
ht_info->reg_bw_40mhz = 1;
if (ht_info->reg_bw_40mhz)
ht_info->bRegSuppCCK = 1;
ht_info->reg_supp_cck = 1;
else
ht_info->bRegSuppCCK = true;
ht_info->reg_supp_cck = true;
ht_info->nAMSDU_MaxSize = 7935UL;
ht_info->bAMSDU_Support = 0;
@ -286,7 +286,7 @@ void HTConstructCapabilityElement(struct rtllib_device *ieee, u8 *posHTCap,
pCapELE->RxSTBC = 0;
pCapELE->DelayBA = 0;
pCapELE->MaxAMSDUSize = (MAX_RECEIVE_BUFFER_SIZE >= 7935) ? 1 : 0;
pCapELE->DssCCk = ((pHT->reg_bw_40mhz) ? (pHT->bRegSuppCCK ? 1 : 0) : 0);
pCapELE->DssCCk = ((pHT->reg_bw_40mhz) ? (pHT->reg_supp_cck ? 1 : 0) : 0);
pCapELE->PSMP = 0;
pCapELE->LSigTxopProtect = 0;
@ -485,7 +485,7 @@ void HTOnAssocRsp(struct rtllib_device *ieee)
((pPeerHTCap->ShortGI40Mhz == 1) ?
true : false) : false);
ht_info->bCurSuppCCK = ((ht_info->bRegSuppCCK) ?
ht_info->bCurSuppCCK = ((ht_info->reg_supp_cck) ?
((pPeerHTCap->DssCCk == 1) ? true :
false) : false);