staging: rtl8723au: Remove HW_VAR_APFM_ON_MAC
None of this was ever used, so pull it out together with related variables Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
df09df24d0
commit
441ffea706
@ -755,14 +755,6 @@ void rtl8723a_fifo_cleanup(struct rtw_adapter *padapter)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void rtl8723a_set_apfm_on_mac(struct rtw_adapter *padapter, u8 val)
|
|
||||||
{
|
|
||||||
struct hal_data_8723a *pHalData = GET_HAL_DATA(padapter);
|
|
||||||
|
|
||||||
pHalData->bMacPwrCtrlOn = val;
|
|
||||||
DBG_8723A("%s: bMacPwrCtrlOn =%d\n", __func__, pHalData->bMacPwrCtrlOn);
|
|
||||||
}
|
|
||||||
|
|
||||||
void rtl8723a_bcn_valid(struct rtw_adapter *padapter)
|
void rtl8723a_bcn_valid(struct rtw_adapter *padapter)
|
||||||
{
|
{
|
||||||
/* BCN_VALID, BIT16 of REG_TDECTRL = BIT0 of REG_TDECTRL+2,
|
/* BCN_VALID, BIT16 of REG_TDECTRL = BIT0 of REG_TDECTRL+2,
|
||||||
|
@ -3144,9 +3144,6 @@ void SetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
|||||||
case HW_VAR_EFUSE_BT_BYTES:
|
case HW_VAR_EFUSE_BT_BYTES:
|
||||||
pHalData->BTEfuseUsedBytes = *((u16 *) val);
|
pHalData->BTEfuseUsedBytes = *((u16 *) val);
|
||||||
break;
|
break;
|
||||||
case HW_VAR_APFM_ON_MAC:
|
|
||||||
rtl8723a_set_apfm_on_mac(padapter, *val);
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@ -3195,9 +3192,6 @@ void GetHwReg8723A(struct rtw_adapter *padapter, u8 variable, u8 *val)
|
|||||||
*((u16 *) val) = pHalData->BTEfuseUsedBytes;
|
*((u16 *) val) = pHalData->BTEfuseUsedBytes;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case HW_VAR_APFM_ON_MAC:
|
|
||||||
*val = pHalData->bMacPwrCtrlOn;
|
|
||||||
break;
|
|
||||||
case HW_VAR_CHK_HI_QUEUE_EMPTY:
|
case HW_VAR_CHK_HI_QUEUE_EMPTY:
|
||||||
*val =
|
*val =
|
||||||
((rtw_read32(padapter, REG_HGQ_INFORMATION) & 0x0000ff00) ==
|
((rtw_read32(padapter, REG_HGQ_INFORMATION) & 0x0000ff00) ==
|
||||||
|
@ -54,7 +54,6 @@ enum HW_VARIABLES {
|
|||||||
HW_VAR_SWITCH_EPHY_WoWLAN,
|
HW_VAR_SWITCH_EPHY_WoWLAN,
|
||||||
HW_VAR_EFUSE_BYTES,
|
HW_VAR_EFUSE_BYTES,
|
||||||
HW_VAR_EFUSE_BT_BYTES,
|
HW_VAR_EFUSE_BT_BYTES,
|
||||||
HW_VAR_APFM_ON_MAC, /* Auto FSM to Turn On, include clock, isolation, power control for MAC only */
|
|
||||||
/* The valid upper nav range for the HW updating, if the true value is larger than the upper range, the HW won't update it. */
|
/* The valid upper nav range for the HW updating, if the true value is larger than the upper range, the HW won't update it. */
|
||||||
/* Unit in microsecond. 0 means disable this function. */
|
/* Unit in microsecond. 0 means disable this function. */
|
||||||
HW_VAR_RPT_TIMER_SETTING,
|
HW_VAR_RPT_TIMER_SETTING,
|
||||||
|
@ -437,14 +437,6 @@ struct hal_data_8723a {
|
|||||||
/* Interrupt related register information. */
|
/* Interrupt related register information. */
|
||||||
u32 IntArray[2];
|
u32 IntArray[2];
|
||||||
u32 IntrMask[2];
|
u32 IntrMask[2];
|
||||||
|
|
||||||
/* */
|
|
||||||
/* For SDIO Interface HAL related */
|
|
||||||
/* */
|
|
||||||
|
|
||||||
/* Auto FSM to Turn On, include clock, isolation, power control for MAC only */
|
|
||||||
u8 bMacPwrCtrlOn;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define GET_HAL_DATA(__pAdapter) ((struct hal_data_8723a *)((__pAdapter)->HalData))
|
#define GET_HAL_DATA(__pAdapter) ((struct hal_data_8723a *)((__pAdapter)->HalData))
|
||||||
|
Loading…
Reference in New Issue
Block a user