mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ath10k: advertise more conservative intf combinations
Apparently the available firmware has a limit of handling 7 APs, 3 GOs or 8 STAs. This is based on empirical tests and it is still possible some combinations may crash the firmware. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
dcd4a56121
commit
d531cb85d5
1 changed files with 9 additions and 3 deletions
|
@ -3114,9 +3114,15 @@ static const struct ieee80211_iface_limit ath10k_if_limits[] = {
|
||||||
.max = 8,
|
.max = 8,
|
||||||
.types = BIT(NL80211_IFTYPE_STATION)
|
.types = BIT(NL80211_IFTYPE_STATION)
|
||||||
| BIT(NL80211_IFTYPE_P2P_CLIENT)
|
| BIT(NL80211_IFTYPE_P2P_CLIENT)
|
||||||
| BIT(NL80211_IFTYPE_P2P_GO)
|
},
|
||||||
| BIT(NL80211_IFTYPE_AP)
|
{
|
||||||
}
|
.max = 3,
|
||||||
|
.types = BIT(NL80211_IFTYPE_P2P_GO)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.max = 7,
|
||||||
|
.types = BIT(NL80211_IFTYPE_AP)
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct ieee80211_iface_combination ath10k_if_comb = {
|
static const struct ieee80211_iface_combination ath10k_if_comb = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue