Commit 4278d88f authored by Johannes Berg's avatar Johannes Berg

wifi: iwlwifi: mvm: fix interface combinations

The NAN code referenced in this commit isn't actually
present in the driver (any more), and the commit didn't
add the extra NAN entry. Thus, the -1 is incorrect.
Reported-by: default avatarAlexander Wetzel <Alexander@wetzel-home.de>
Closes: https://lore.kernel.org/20240702104128.26394-1-Alexander@wetzel-home.de
Fixes: 5c38beda ("wifi: iwlwifi: mvm: unify and fix interface combinations")
Link: https://patch.msgid.link/20240702130001.8c871a3f0b5a.I08a6542f52f63c5bd66bf3feb09e1998ce7c60e5@changeidSigned-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent c1cacb01
...@@ -59,13 +59,13 @@ static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { ...@@ -59,13 +59,13 @@ static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = {
.num_different_channels = 2, .num_different_channels = 2,
.max_interfaces = 3, .max_interfaces = 3,
.limits = iwl_mvm_limits, .limits = iwl_mvm_limits,
.n_limits = ARRAY_SIZE(iwl_mvm_limits) - 1, .n_limits = ARRAY_SIZE(iwl_mvm_limits),
}, },
{ {
.num_different_channels = 1, .num_different_channels = 1,
.max_interfaces = 3, .max_interfaces = 3,
.limits = iwl_mvm_limits_ap, .limits = iwl_mvm_limits_ap,
.n_limits = ARRAY_SIZE(iwl_mvm_limits_ap) - 1, .n_limits = ARRAY_SIZE(iwl_mvm_limits_ap),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment