소스 검색

qcacld-3.0: Update maxNumberOfPeers in sme database from ini

The value that is received from the ini for the max number of peers
supported for SAP is not being updated to the sme database.

Update the ini param into the sme database

Change-Id: I319d825e8b1f643b04b5521577786f8a3ed20e13
CRs-Fixed: 2249919
Sourav Mohapatra 7 년 전
부모
커밋
9916dca12c
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      core/hdd/src/wlan_hdd_cfg.c

+ 7 - 0
core/hdd/src/wlan_hdd_cfg.c

@@ -8337,6 +8337,13 @@ bool hdd_update_config_cfg(struct hdd_context *hdd_ctx)
 		hdd_err("Couldn't pass on WNI_CFG_RATE_FOR_TX_MGMT_5G to CCM");
 	}
 
+	if (sme_cfg_set_int(hdd_ctx->hHal, WNI_CFG_ASSOC_STA_LIMIT,
+				config->maxNumberOfPeers) ==
+				QDF_STATUS_E_FAILURE) {
+		status = false;
+		hdd_err("Couldn't pass on WNI_CFG_ASSOC_STA_LIMIT to CFG");
+	}
+
 	return status;
 }