diff options
| author | Ilan Peer <ilan.peer@intel.com> | 2025-02-05 15:55:39 +0300 | 
|---|---|---|
| committer | Johannes Berg <johannes.berg@intel.com> | 2025-02-11 13:59:47 +0300 | 
| commit | 926ad5f970d6b6573ba508da69e91cc6dba3611f (patch) | |
| tree | f269cdbf54017ca6692be6be453189bd132c0e76 | |
| parent | bdfc32abd5d640198a00aceb1d497223b85bca7e (diff) | |
| download | linux-926ad5f970d6b6573ba508da69e91cc6dba3611f.tar.xz | |
wifi: iwlwifi: mvm: Indicate support link reconfiguration
As MLO link configuration is supported by mac80211, indicate
support for MLO link reconfiguration in station mode.
Signed-off-by: Ilan Peer <ilan.peer@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
----------------
depends on "wifi: ieee80211: Add some missing MLO related definitions"
Link: https://patch.msgid.link/20250205145347.92d19705d2b9.Id07fa3ebad6bc23ecf6e91868f67150ce70f47b0@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index af6644b7e95f..014777c9cc5d 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -272,9 +272,10 @@ static const u8 tm_if_types_ext_capa_sta[] = {  					__bf_shf(IEEE80211_EML_CAP_EMLSR_PADDING_DELAY) | \  				 IEEE80211_EML_CAP_EMLSR_TRANSITION_DELAY_64US << \  					__bf_shf(IEEE80211_EML_CAP_EMLSR_TRANSITION_DELAY)) -#define IWL_MVM_MLD_CAPA_OPS FIELD_PREP_CONST( \ +#define IWL_MVM_MLD_CAPA_OPS (FIELD_PREP_CONST( \  			IEEE80211_MLD_CAP_OP_TID_TO_LINK_MAP_NEG_SUPP, \ -			IEEE80211_MLD_CAP_OP_TID_TO_LINK_MAP_NEG_SUPP_SAME) +			IEEE80211_MLD_CAP_OP_TID_TO_LINK_MAP_NEG_SUPP_SAME) | \ +			IEEE80211_MLD_CAP_OP_LINK_RECONF_SUPPORT)  static const struct wiphy_iftype_ext_capab add_iftypes_ext_capa[] = {  	{ | 
