diff options
author | Liad Kaufman <liad.kaufman@intel.com> | 2016-02-23 09:23:38 -0500 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2016-03-02 01:58:24 -0500 |
commit | 280452c9056421364111930b6336e27d85240438 (patch) | |
tree | 6f4414cf224161d76289a1d4b5e5a7427c08e04b | |
parent | 5eae443eb5e2b3777582ea37c6a002171ec134d5 (diff) |
iwlwifi: mvm: disable DQA support
Do not allow entrance into DQA flows until feature is
completely ready and merged.
Signed-off-by: Liad Kaufman <liad.kaufman@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h b/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h index 6d4e4879357c..7ea2baae0489 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | |||
@@ -986,8 +986,9 @@ static inline bool iwl_mvm_is_d0i3_supported(struct iwl_mvm *mvm) | |||
986 | 986 | ||
987 | static inline bool iwl_mvm_is_dqa_supported(struct iwl_mvm *mvm) | 987 | static inline bool iwl_mvm_is_dqa_supported(struct iwl_mvm *mvm) |
988 | { | 988 | { |
989 | return fw_has_capa(&mvm->fw->ucode_capa, | 989 | /* Make sure DQA isn't allowed in driver until feature is complete */ |
990 | IWL_UCODE_TLV_CAPA_DQA_SUPPORT); | 990 | return false && fw_has_capa(&mvm->fw->ucode_capa, |
991 | IWL_UCODE_TLV_CAPA_DQA_SUPPORT); | ||
991 | } | 992 | } |
992 | 993 | ||
993 | static inline bool iwl_mvm_enter_d0i3_on_suspend(struct iwl_mvm *mvm) | 994 | static inline bool iwl_mvm_enter_d0i3_on_suspend(struct iwl_mvm *mvm) |