qcacld-3.0: Enable maximum five vdevs for auto genoa

There are default four adapters wlan0/wlan1/p2p0/wifi-aware0
opened with auto genoa, in AP_AP on GUI case, another wlan2
interface needs to be created, but failed due to
CONFIG_WLAN_MAX_VDEVS setting to four, CONFIG_WLAN_MAX_VDEVS
will limit how many opened adapters can be opened. max_vdev_count
will limit how many vdevs can be created with firmware,
max_vdev_count is the minimum between target maximum vdev count
and CONFIG_WLAN_MAX_VDEVS value.

Fix is to extend CONFIG_WLAN_MAX_VDEVS from four to five.

Change-Id: Ib98ccec1b0cd35604b1bb342129046cff066fd45
CRs-Fixed: 2819588
This commit is contained in:
hqu
2020-11-23 14:43:46 +08:00
committed by snandini
parent c2564ceb0a
commit 38e4aa57c3

View File

@@ -1,7 +1,7 @@
include $(WLAN_ROOT)/configs/genoa.pci.debug_defconfig include $(WLAN_ROOT)/configs/genoa.pci.debug_defconfig
# Number of vdevs supported at one time, used for allocating memory # Number of vdevs supported at one time, used for allocating memory
CONFIG_WLAN_MAX_VDEVS := 4 CONFIG_WLAN_MAX_VDEVS := 5
# Flag to enable/disable TARGET 11d scan # Flag to enable/disable TARGET 11d scan
CONFIG_TARGET_11D_SCAN := y CONFIG_TARGET_11D_SCAN := y