Browse Source

fw-api: Restrict the maximum number of TDLS peers to 8

Currently the maximum number of TDLS peers supported is 32
in the firmware. But in ideal use cases, we are not using
more than 4 and the remaining 28 is un used.
Restrict the maximum supported TDLS peers to 8 to save
the memory.

Change-Id: Id9d753eefb6ce15ca164e3119707062ed14d1b06
CRs-Fixed: 1116974
Kabilan Kannan 8 years ago
parent
commit
42c9c4c611
2 changed files with 2 additions and 2 deletions
  1. 1 1
      fw/wlan_tgt_def_config.h
  2. 1 1
      fw/wlan_tgt_def_config_hl.h

+ 1 - 1
fw/wlan_tgt_def_config.h

@@ -198,7 +198,7 @@
 /*
  * number of peers that each Tdls vdev can track
  */
-#define CFG_TGT_NUM_TDLS_CONN_TABLE_ENTRIES    32
+#define CFG_TGT_NUM_TDLS_CONN_TABLE_ENTRIES   8
 
 /*
  * number of TDLS concurrent sleep STAs

+ 1 - 1
fw/wlan_tgt_def_config_hl.h

@@ -221,7 +221,7 @@
 /*
  * number of peers that each Tdls vdev can track
  */
-#define CFG_TGT_NUM_TDLS_CONN_TABLE_ENTRIES    32
+#define CFG_TGT_NUM_TDLS_CONN_TABLE_ENTRIES   8
 /*
  * number of TDLS concurrent sleep STAs
  */