summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSachin Ahuja <sahuja@qti.qualcomm.com>2014-06-23 17:06:08 +0530
committerPitani Venkata Rajesh Kumar <c_vpitan@qti.qualcomm.com>2014-06-26 11:14:24 +0530
commitefb0489634903bf233da07d7ccdc75c84055d40c (patch)
tree102beb5fa830c57120a240985da9975b392378dd
parent3ab1f997dca7fad255311ff3d9a4335f263c505c (diff)
qcacld: Limit the max number of peers to 14 for Rome 2.x
Currently, the max number of peers is 32 for Rome 2.x.Changes are done to limit to 14. CRs-Fixed: 684091 Change-Id: I570c97dc04d895f3c9085edfd9653d6006458946
-rw-r--r--CORE/SERVICES/BMI/ol_fw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/CORE/SERVICES/BMI/ol_fw.c b/CORE/SERVICES/BMI/ol_fw.c
index 512551fef1ab..0b70e68f1ff6 100644
--- a/CORE/SERVICES/BMI/ol_fw.c
+++ b/CORE/SERVICES/BMI/ol_fw.c
@@ -1928,6 +1928,7 @@ u_int8_t ol_get_number_of_peers_supported(struct ol_softc *scn)
switch (scn->target_version) {
case AR6320_REV1_1_VERSION:
+ case AR6320_REV2_1_VERSION:
if(scn->max_no_of_peers > MAX_SUPPORTED_PEERS_REV1_1)
max_no_of_peers = MAX_SUPPORTED_PEERS_REV1_1;
else