Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a065ab3 authored by Johannes Berg's avatar Johannes Berg Committed by Reinette Chatre
Browse files

iwlwifi: remove useless priv->vif check



This check is not useful, since we now no
longer dereference priv->vif at this spot.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
parent 832f47e3
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -317,10 +317,7 @@ int iwl_power_update_mode(struct iwl_priv *priv, bool force)
	update_chains = priv->chain_noise_data.state == IWL_CHAIN_NOISE_DONE ||
			priv->chain_noise_data.state == IWL_CHAIN_NOISE_ALIVE;

	if (priv->vif)
		dtimper = priv->hw->conf.ps_dtim_period;
	else
		dtimper = 1;
	dtimper = priv->hw->conf.ps_dtim_period ?: 1;

	if (priv->cfg->broken_powersave)
		iwl_power_sleep_cam_cmd(priv, &cmd);