浏览代码

qcacld-3.0: Update channel width and set channel for SAP

It does not set channel width and set channel for HT40 mode SAP, which
causes SAP start at HT20 mode by default.

Change-Id: Ia29c44d897384569249149bccf8d3e0516cce0ce
CRs-Fixed: 2158079
Wu Gao 7 年之前
父节点
当前提交
9c01ec4ae5
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      core/hdd/src/wlan_hdd_hostapd.c

+ 4 - 3
core/hdd/src/wlan_hdd_hostapd.c

@@ -7365,11 +7365,12 @@ static int wlan_hdd_sap_p2p_11ac_overrides(struct hdd_adapter *ap_adapter)
 				sap_cfg->ch_width_orig =
 					eHT_CHANNEL_WIDTH_20MHZ;
 		}
-		sap_cfg->ch_params.ch_width = sap_cfg->ch_width_orig;
-		wlan_reg_set_channel_params(hdd_ctx->hdd_pdev, sap_cfg->channel,
-					sap_cfg->sec_ch, &sap_cfg->ch_params);
 	}
 
+	sap_cfg->ch_params.ch_width = sap_cfg->ch_width_orig;
+	wlan_reg_set_channel_params(hdd_ctx->hdd_pdev, sap_cfg->channel,
+				sap_cfg->sec_ch, &sap_cfg->ch_params);
+
 	return 0;
 }