diff options
| author | Emmanuel Grumbach <[email protected]> | 2024-02-06 16:02:07 +0000 |
|---|---|---|
| committer | Johannes Berg <[email protected]> | 2024-02-08 14:00:48 +0000 |
| commit | ff04f78ce38d79bdbf6b1fd276a6a2d035e21951 (patch) | |
| tree | 6aa6f8c86696be1eba4a32cd50090dbc9e0f9675 /drivers/net/wireless/intel/iwlwifi/mvm/sf.c | |
| parent | wifi: iwlwifi: mvm: don't set the MFP flag for the GTK (diff) | |
| download | kernel-ff04f78ce38d79bdbf6b1fd276a6a2d035e21951.tar.gz kernel-ff04f78ce38d79bdbf6b1fd276a6a2d035e21951.zip | |
wifi: iwlwifi: mvm: don't send the smart fifo command if not needed
Newer firmware versions no longer needs this command. Don't send it if
the firmware advertises it does not need it.
Signed-off-by: Emmanuel Grumbach <[email protected]>
Signed-off-by: Miri Korenblit <[email protected]>
Link: https://msgid.link/20240206175739.527595995aa0.I0381bef1dc815945f2ec194fecc657e5c75bb2ec@changeid
Signed-off-by: Johannes Berg <[email protected]>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/sf.c')
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/sf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/sf.c b/drivers/net/wireless/intel/iwlwifi/mvm/sf.c index 30d4233595e8..16285ae7cae9 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/sf.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/sf.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause /* - * Copyright (C) 2013-2014, 2018-2019, 2022-2023 Intel Corporation + * Copyright (C) 2013-2014, 2018-2019, 2022-2024 Intel Corporation * Copyright (C) 2013-2014 Intel Mobile Communications GmbH */ #include "mvm.h" @@ -232,6 +232,9 @@ int iwl_mvm_sf_update(struct iwl_mvm *mvm, struct ieee80211_vif *changed_vif, }; struct ieee80211_sta *sta = NULL; + if (fw_has_api(&mvm->fw->ucode_capa, + IWL_UCODE_TLV_API_SMART_FIFO_OFFLOAD)) + return 0; /* * Ignore the call if we are in HW Restart flow, or if the handled * vif is a p2p device. |
