Commit cc2231a3 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: rtl8723bs: Rename PHY_GetTxPowerLimit().

Rename camel-case 'PHY_GetTxPowerLimit()' to 'phy_get_tx_pwr_lmt()'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26472590
...@@ -1612,9 +1612,9 @@ static s8 phy_GetChannelIndexOfTxPowerLimit(u8 Band, u8 Channel) ...@@ -1612,9 +1612,9 @@ static s8 phy_GetChannelIndexOfTxPowerLimit(u8 Band, u8 Channel)
return channelIndex; return channelIndex;
} }
s8 PHY_GetTxPowerLimit(struct adapter *Adapter, u32 RegPwrTblSel, s8 phy_get_tx_pwr_lmt(struct adapter *Adapter, u32 RegPwrTblSel,
enum BAND_TYPE Band, enum CHANNEL_WIDTH Bandwidth, enum BAND_TYPE Band, enum CHANNEL_WIDTH Bandwidth,
u8 RfPath, u8 DataRate, u8 Channel) u8 RfPath, u8 DataRate, u8 Channel)
{ {
s16 band = -1; s16 band = -1;
s16 regulation = -1; s16 regulation = -1;
......
...@@ -688,7 +688,7 @@ u8 PHY_GetTxPowerIndex_8723B( ...@@ -688,7 +688,7 @@ u8 PHY_GetTxPowerIndex_8723B(
txPower = (s8) PHY_GetTxPowerIndexBase(padapter, RFPath, Rate, BandWidth, Channel, &bIn24G); txPower = (s8) PHY_GetTxPowerIndexBase(padapter, RFPath, Rate, BandWidth, Channel, &bIn24G);
powerDiffByRate = PHY_GetTxPowerByRate(padapter, BAND_ON_2_4G, ODM_RF_PATH_A, RF_1TX, Rate); powerDiffByRate = PHY_GetTxPowerByRate(padapter, BAND_ON_2_4G, ODM_RF_PATH_A, RF_1TX, Rate);
limit = PHY_GetTxPowerLimit( limit = phy_get_tx_pwr_lmt(
padapter, padapter,
padapter->registrypriv.RegPwrTblSel, padapter->registrypriv.RegPwrTblSel,
(u8)(!bIn24G), (u8)(!bIn24G),
......
...@@ -177,7 +177,7 @@ u8 Channel, ...@@ -177,7 +177,7 @@ u8 Channel,
bool *bIn24G bool *bIn24G
); );
s8 PHY_GetTxPowerLimit (struct adapter *adapter, u32 RegPwrTblSel, s8 phy_get_tx_pwr_lmt (struct adapter *adapter, u32 RegPwrTblSel,
enum BAND_TYPE Band, enum CHANNEL_WIDTH Bandwidth, enum BAND_TYPE Band, enum CHANNEL_WIDTH Bandwidth,
u8 RfPath, u8 RfPath,
u8 DataRate, u8 DataRate,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment