Staging: rtl8188eu: Replace ternary operator with existing macro
Replace ternary operator with existing abs() macro to increase code readability. Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8e2c69b62d
commit
d5dd06ea01
@ -577,9 +577,8 @@ void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt)
|
||||
}
|
||||
|
||||
if (delta > 0 && dm_odm->RFCalibrateInfo.TxPowerTrackControl) {
|
||||
delta = thermal_val > hal_data->EEPROMThermalMeter ?
|
||||
(thermal_val - hal_data->EEPROMThermalMeter) :
|
||||
(hal_data->EEPROMThermalMeter - thermal_val);
|
||||
delta = abs(hal_data->EEPROMThermalMeter - thermal_val);
|
||||
|
||||
/* calculate new OFDM / CCK offset */
|
||||
if (thermal_val > hal_data->EEPROMThermalMeter)
|
||||
j = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user