qcacld-3.0: Check peer phymode only if DUT is SAP/GO

Force set peer's phymode to the phymode of current interface if first
one big then second one, then TDLS link can't select more better
phymode when DUT support VHT mode and connect to 11A mode AP.

Change-Id: Idc72e04dcdf7ead3b52effc2c06862bc9dddd732
CRs-Fixed: 2512622
此提交包含在:
Wu Gao
2019-08-21 14:32:40 +08:00
提交者 nshrivas
父節點 e2c0cd722c
當前提交 efd73546c8

查看文件

@@ -1290,8 +1290,8 @@ QDF_STATUS wma_send_peer_assoc(tp_wma_handle wma,
phymode = wma_peer_phymode(nw_type, params->staType,
params->htCapable, params->ch_width,
params->vhtCapable, is_he);
if (phymode > intr->chanmode) {
WMA_LOGD("Peer phymode %d is not allowed. Set it equal to sap phymode %d",
if ((intr->type == WMI_VDEV_TYPE_AP) && (phymode > intr->chanmode)) {
WMA_LOGD("Peer phymode %d is not allowed. Set it equal to sap/go phymode %d",
phymode, intr->chanmode);
phymode = intr->chanmode;
}