Ver Fonte

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 há 2 anos atrás
pai
commit
a00a39fe45
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
 	}