mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 07:59:42 -04:00
staging: rtl8723au: ODM_BB_DIG is always set
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
79afea1b30
commit
3d51a602dc
@@ -583,10 +583,9 @@ void odm_DIG23a(struct rtw_adapter *adapter)
|
||||
u8 CurrentIGI = pDM_DigTable->CurIGValue;
|
||||
|
||||
ODM_RT_TRACE(pDM_Odm, ODM_COMP_DIG, ODM_DBG_LOUD, ("odm_DIG23a() ==>\n"));
|
||||
/* if (!(pDM_Odm->SupportAbility & (ODM_BB_DIG|ODM_BB_FA_CNT))) */
|
||||
if ((!(pDM_Odm->SupportAbility&ODM_BB_DIG)) || (!(pDM_Odm->SupportAbility&ODM_BB_FA_CNT))) {
|
||||
if (!(pDM_Odm->SupportAbility & ODM_BB_FA_CNT)) {
|
||||
ODM_RT_TRACE(pDM_Odm, ODM_COMP_DIG, ODM_DBG_LOUD,
|
||||
("odm_DIG23a() Return: SupportAbility ODM_BB_DIG or ODM_BB_FA_CNT is disabled\n"));
|
||||
("odm_DIG23a() Return: SupportAbility ODM_BB_FA_CNT is disabled\n"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -129,8 +129,7 @@ static void Update_ODM_ComInfo_8723a(struct rtw_adapter *Adapter)
|
||||
struct dm_odm_t *pDM_Odm = &pHalData->odmpriv;
|
||||
struct dm_priv *pdmpriv = &pHalData->dmpriv;
|
||||
int i;
|
||||
pdmpriv->InitODMFlag = ODM_BB_DIG |
|
||||
ODM_BB_DYNAMIC_TXPWR |
|
||||
pdmpriv->InitODMFlag = ODM_BB_DYNAMIC_TXPWR |
|
||||
ODM_BB_FA_CNT |
|
||||
ODM_BB_RSSI_MONITOR |
|
||||
ODM_BB_CCK_PD |
|
||||
|
||||
@@ -347,7 +347,6 @@ enum odm_cmninfo {
|
||||
/* Define ODM support ability. ODM_CMNINFO_ABILITY */
|
||||
enum {
|
||||
/* BB ODM section BIT 0-15 */
|
||||
ODM_BB_DIG = BIT(0),
|
||||
ODM_BB_DYNAMIC_TXPWR = BIT(2),
|
||||
ODM_BB_FA_CNT = BIT(3),
|
||||
ODM_BB_RSSI_MONITOR = BIT(4),
|
||||
|
||||
Reference in New Issue
Block a user