Message ID | 20241010140328.a60d6303c027.I60061277526302a75cadbba10452e94c54763f13@changeid (mailing list archive) |
---|---|
State | Rejected |
Delegated to: | Johannes Berg |
Headers | show |
Series | iwlwifi bugfixes - 10-10-2024 | expand |
On Thu, 2024-10-10 at 14:05 +0300, Miri Korenblit wrote: > From: Emmanuel Grumbach <emmanuel.grumbach@intel.com> > > This feature can be used on ax200 as well. It'll avoid to restart the > firmware upon suspend / resume flow. Doing so also avoids releasing and > re-allocating all the device related memory which makes the memory's > subsystem task easier. > This might've been a bugfix as far as the customer was concerned, but I don't think we can consider it a bugfix upstream? johannes
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index 39b815904501..62d55864b5df 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -1369,7 +1369,7 @@ void __iwl_mvm_mac_stop(struct iwl_mvm *mvm, bool suspend) iwl_mvm_rm_aux_sta(mvm); if (suspend && - mvm->trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) + mvm->trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_22000) iwl_mvm_fast_suspend(mvm); else iwl_mvm_stop_device(mvm);