mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 04:34:11 +08:00
staging: rtl8188eu: Remove unused function PHY_UpdateTxPowerDbm8188E()
Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9578c30820
commit
ba814a247e
@ -878,43 +878,6 @@ PHY_SetTxPowerLevel8188E(
|
|||||||
rtl8188e_PHY_RF6052SetOFDMTxPower(Adapter, &ofdmPowerLevel[0], &BW20PowerLevel[0], &BW40PowerLevel[0], channel);
|
rtl8188e_PHY_RF6052SetOFDMTxPower(Adapter, &ofdmPowerLevel[0], &BW20PowerLevel[0], &BW40PowerLevel[0], channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* */
|
|
||||||
/* Description: */
|
|
||||||
/* Update transmit power level of all channel supported. */
|
|
||||||
/* */
|
|
||||||
/* TODO: */
|
|
||||||
/* A mode. */
|
|
||||||
/* By Bruce, 2008-02-04. */
|
|
||||||
/* */
|
|
||||||
bool
|
|
||||||
PHY_UpdateTxPowerDbm8188E(
|
|
||||||
struct adapter *Adapter,
|
|
||||||
int powerInDbm
|
|
||||||
)
|
|
||||||
{
|
|
||||||
struct hal_data_8188e *pHalData = GET_HAL_DATA(Adapter);
|
|
||||||
u8 idx;
|
|
||||||
u8 rf_path;
|
|
||||||
|
|
||||||
/* TODO: A mode Tx power. */
|
|
||||||
u8 CckTxPwrIdx = phy_DbmToTxPwrIdx(Adapter, WIRELESS_MODE_B, powerInDbm);
|
|
||||||
u8 OfdmTxPwrIdx = phy_DbmToTxPwrIdx(Adapter, WIRELESS_MODE_N_24G, powerInDbm);
|
|
||||||
|
|
||||||
if (OfdmTxPwrIdx - pHalData->LegacyHTTxPowerDiff > 0)
|
|
||||||
OfdmTxPwrIdx -= pHalData->LegacyHTTxPowerDiff;
|
|
||||||
else
|
|
||||||
OfdmTxPwrIdx = 0;
|
|
||||||
|
|
||||||
for (idx = 0; idx < 14; idx++) {
|
|
||||||
for (rf_path = 0; rf_path < 2; rf_path++) {
|
|
||||||
pHalData->TxPwrLevelCck[rf_path][idx] = CckTxPwrIdx;
|
|
||||||
pHalData->TxPwrLevelHT40_1S[rf_path][idx] =
|
|
||||||
pHalData->TxPwrLevelHT40_2S[rf_path][idx] = OfdmTxPwrIdx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
PHY_ScanOperationBackup8188E(
|
PHY_ScanOperationBackup8188E(
|
||||||
struct adapter *Adapter,
|
struct adapter *Adapter,
|
||||||
|
@ -224,7 +224,6 @@ void rtl8192c_PHY_GetHWRegOriginalValue(struct adapter *adapter);
|
|||||||
/* BB TX Power R/W */
|
/* BB TX Power R/W */
|
||||||
void PHY_GetTxPowerLevel8188E(struct adapter *adapter, u32 *powerlevel);
|
void PHY_GetTxPowerLevel8188E(struct adapter *adapter, u32 *powerlevel);
|
||||||
void PHY_SetTxPowerLevel8188E(struct adapter *adapter, u8 channel);
|
void PHY_SetTxPowerLevel8188E(struct adapter *adapter, u8 channel);
|
||||||
bool PHY_UpdateTxPowerDbm8188E(struct adapter *adapter, int power);
|
|
||||||
|
|
||||||
void PHY_ScanOperationBackup8188E(struct adapter *Adapter, u8 Operation);
|
void PHY_ScanOperationBackup8188E(struct adapter *Adapter, u8 Operation);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user