소스 검색

qcacld-3.0: Fix wrong MCS config of eht mode

Fix wrong MCS config of eht mode

Change-Id: I877678d45a9ec533487e5f06748c9dc27aa3c068
CRs-Fixed: 3319345
Jianmin Zhu 2 년 전
부모
커밋
a00a39fe45
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/mac/src/pe/lim/lim_utils.c

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -8236,7 +8236,7 @@ QDF_STATUS lim_populate_eht_mcs_set(struct mac_context *mac_ctx,
 		pe_debug("peer not eht capable or eht_caps NULL");
 		return QDF_STATUS_SUCCESS;
 	}
-	if (lim_is_session_eht_capable(session_entry)) {
+	if (!lim_is_session_eht_capable(session_entry)) {
 		pe_debug("session not eht capable");
 		return QDF_STATUS_SUCCESS;
 	}