Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c63292f6 authored by Surabhi Vishnoi's avatar Surabhi Vishnoi Committed by Balaji Pothunoori
Browse files

ath10k: Add mesh point interface creation combination



Currently WCN3990 supports 3 concurrent VAP creation. This leads
to failure of mesh interface creation in concurrent cases.

Add creation of mesh point interface in interface combination
if CONFIG_MAC80211_MESH is enabled.

Change-Id: I06e1f4c488208e80ab7dd622e35228001d026395
Signed-off-by: default avatarSurabhi Vishnoi <svishnoi@codeaurora.org>
Signed-off-by: default avatarBalaji Pothunoori <bpothuno@codeaurora.org>
parent 510d31c8
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -8027,7 +8027,10 @@ static const struct ieee80211_iface_limit ath10k_tlv_if_vap_limit[] = {
	},
	{
		.max = 3,
		.types = BIT(NL80211_IFTYPE_AP),
		.types = BIT(NL80211_IFTYPE_AP)
#ifdef CONFIG_MAC80211_MESH
			| BIT(NL80211_IFTYPE_MESH_POINT)
#endif
	},
};