staging: r8188eu: remove odm hct test info
The "in hct test" variable is never set, it's always 0. Remove the variable and fix up the one place where it was used. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20211010175204.24029-8-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
640649a15e
Коммит
8f78bc11b8
|
@ -246,9 +246,6 @@ void ODM_CmnInfoInit(struct odm_dm_struct *pDM_Odm, enum odm_common_info_def Cmn
|
|||
case ODM_CMNINFO_EXT_TRSW:
|
||||
pDM_Odm->ExtTRSW = (u8)Value;
|
||||
break;
|
||||
case ODM_CMNINFO_BINHCT_TEST:
|
||||
pDM_Odm->bInHctTest = (bool)Value;
|
||||
break;
|
||||
/* To remove the compiler warning, must add an empty default statement to handle the other values. */
|
||||
default:
|
||||
/* do nothing */
|
||||
|
|
|
@ -143,7 +143,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(struct odm_dm_struct *dm_odm,
|
|||
if (pPktinfo->bPacketMatchBSSID) {
|
||||
u8 SQ, SQ_rpt;
|
||||
|
||||
if (pPhyInfo->RxPWDBAll > 40 && !dm_odm->bInHctTest) {
|
||||
if (pPhyInfo->RxPWDBAll > 40) {
|
||||
SQ = 100;
|
||||
} else {
|
||||
SQ_rpt = pPhyStaRpt->cck_sig_qual_ofdm_pwdb_all;
|
||||
|
|
|
@ -271,7 +271,6 @@ enum odm_common_info_def {
|
|||
ODM_CMNINFO_EXT_LNA, /* true */
|
||||
ODM_CMNINFO_EXT_PA,
|
||||
ODM_CMNINFO_EXT_TRSW,
|
||||
ODM_CMNINFO_BINHCT_TEST,
|
||||
/* HOOK BEFORE REG INIT----------- */
|
||||
|
||||
/* Dynamic value: */
|
||||
|
@ -655,7 +654,6 @@ struct odm_dm_struct {
|
|||
u8 ExtPA;
|
||||
/* with external TRSW NO/Yes = 0/1 */
|
||||
u8 ExtTRSW;
|
||||
bool bInHctTest;
|
||||
|
||||
u32 BK_SupportAbility;
|
||||
u8 AntDivType;
|
||||
|
|
Загрузка…
Ссылка в новой задаче