mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 01:10:28 +00:00
Staging: rtl8192u: Simplify if condition.
Remove unnecessary TRUE statement. Fields bDynamicTxLowPower and bDynamicTxHighPower are of bool type so such change is correct. Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff757c8a26
commit
72b16fe3f1
@ -225,7 +225,7 @@ void PHY_SetRF8256CCKTxPower(struct net_device *dev, u8 powerlevel)
|
||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||
TxAGC = powerlevel;
|
||||
|
||||
if (priv->bDynamicTxLowPower == TRUE) {
|
||||
if (priv->bDynamicTxLowPower) {
|
||||
if (priv->CustomerID == RT_CID_819x_Netcore)
|
||||
TxAGC = 0x22;
|
||||
else
|
||||
@ -275,7 +275,7 @@ void PHY_SetRF8256OFDMTxPower(struct net_device *dev, u8 powerlevel)
|
||||
priv->Pwr_Track = writeVal_tmp;
|
||||
}
|
||||
|
||||
if (priv->bDynamicTxHighPower == TRUE) {
|
||||
if (priv->bDynamicTxHighPower) {
|
||||
/*Add by Jacken 2008/03/06
|
||||
*Emily, 20080613. Set low tx power for both MCS and legacy OFDM
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user