mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 15:55:28 -04:00
staging: r8188: ODM_BB_RA_MASK is always set
Remove the ODM_BB_RA_MASK capability. It is always set for this driver. Like for ODM_BB_DIG before, we can be sure that ODM_BB_RA_MASK was never checked before it was set. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20211218120423.29906-10-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
64bdd3a256
commit
738b35a3eb
@@ -725,9 +725,6 @@ void odm_RefreshRateAdaptiveMask(struct odm_dm_struct *pDM_Odm)
|
||||
u8 i;
|
||||
struct adapter *pAdapter = pDM_Odm->Adapter;
|
||||
|
||||
if (!(pDM_Odm->SupportAbility & ODM_BB_RA_MASK))
|
||||
return;
|
||||
|
||||
if (pAdapter->bDriverStopped)
|
||||
return;
|
||||
|
||||
|
||||
@@ -53,8 +53,7 @@ static void Update_ODM_ComInfo_88E(struct adapter *Adapter)
|
||||
struct dm_priv *pdmpriv = &hal_data->dmpriv;
|
||||
int i;
|
||||
|
||||
pdmpriv->InitODMFlag = ODM_BB_RA_MASK |
|
||||
ODM_BB_FA_CNT |
|
||||
pdmpriv->InitODMFlag = ODM_BB_FA_CNT |
|
||||
ODM_BB_RSSI_MONITOR |
|
||||
ODM_BB_CCK_PD |
|
||||
ODM_MAC_EDCA_TURBO |
|
||||
|
||||
@@ -240,7 +240,6 @@ enum odm_common_info_def {
|
||||
|
||||
enum odm_ability_def {
|
||||
/* BB ODM section BIT 0-15 */
|
||||
ODM_BB_RA_MASK = BIT(1),
|
||||
ODM_BB_FA_CNT = BIT(3),
|
||||
ODM_BB_RSSI_MONITOR = BIT(4),
|
||||
ODM_BB_CCK_PD = BIT(5),
|
||||
|
||||
Reference in New Issue
Block a user