Browse Source

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 năm trước cách đây
mục cha
commit
9c01ec4ae5
1 tập tin đã thay đổi với 4 bổ sung3 xóa
  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;
 }