Skip to content

Commit

Permalink
iwlwifi: mvm: disable RX-diversity in powersave
Browse files Browse the repository at this point in the history
[ Upstream commit e5322b9 ]

Just like we have default SMPS mode as dynamic in powersave,
we should not enable RX-diversity in powersave, to reduce
power consumption when connected to a non-MIMO AP.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20211017113927.fc896bc5cdaa.I1d11da71b8a5cbe921a37058d5f578f1b14a2023@changeid
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
jmberg-intel authored and gregkh committed Nov 17, 2021
1 parent 6cf3abb commit 6dbc76b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/net/wireless/intel/iwlwifi/mvm/utils.c
Expand Up @@ -405,6 +405,9 @@ bool iwl_mvm_rx_diversity_allowed(struct iwl_mvm *mvm,

lockdep_assert_held(&mvm->mutex);

if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM)
return false;

if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
return false;

Expand Down

0 comments on commit 6dbc76b

Please sign in to comment.