浏览代码

qcacld-3.0: Allow P2P-GO channel switch in response to ECSA Frame

FR29306 has requirement to receive ECSA action frame from P2P-GO

Change id Ie9ddbf10c13f62205fdd60c512a560b35c6610ba broke this

Allow P2P-GO channel switch in response to ECSA Frame

CRs-Fixed: 2424413
Change-Id: Id388b0b6a5610b41d4da0dcda98974d9d0495eb5
Visweswara Tanuku 6 年之前
父节点
当前提交
937444762e
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      core/mac/src/pe/lim/lim_process_action_frame.c

+ 1 - 2
core/mac/src/pe/lim/lim_process_action_frame.c

@@ -386,8 +386,7 @@ lim_process_ext_channel_switch_action_frame(struct mac_context *mac_ctx,
 		return;
 	}
 
-	if ((eLIM_STA_ROLE == session_entry->limSystemRole) ||
-	    (eLIM_P2P_DEVICE_CLIENT == session_entry->limSystemRole)) {
+	if (session_entry->pePersona == QDF_P2P_GO_MODE) {
 
 		struct sir_sme_ext_cng_chan_ind *ext_cng_chan_ind;
 		struct scheduler_msg mmh_msg = {0};