staging: rtl8723bs: core: avoid unnecessary if condition
In function rtw_lps_change_dtim_hdl remove the if condition check to compare the pwrpriv->dtim to dtim . If both are not equal dtim is getting assign to pwrpriv->dtim. But if both are equal assigning dtim to pwrpriv->dtim will not make any difference on value. So remove the unnecessary if condition check. Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com> Link: https://lore.kernel.org/r/YYgWHt+PpyqOv40R@Sauravs-MacBook-Air.local Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d79c386174
commit
01d80b6ed2
|
@ -1498,8 +1498,7 @@ static void rtw_lps_change_dtim_hdl(struct adapter *padapter, u8 dtim)
|
|||
|
||||
mutex_lock(&pwrpriv->lock);
|
||||
|
||||
if (pwrpriv->dtim != dtim)
|
||||
pwrpriv->dtim = dtim;
|
||||
pwrpriv->dtim = dtim;
|
||||
|
||||
if (pwrpriv->fw_current_in_ps_mode && (pwrpriv->pwr_mode > PS_MODE_ACTIVE)) {
|
||||
u8 ps_mode = pwrpriv->pwr_mode;
|
||||
|
|
Loading…
Reference in New Issue