Browse Source

qcacld-3.0: Enable Skip TPE consideration INI by default

The INI skip_tpe_consideration when set, skips power from AP's
TPE IE in TPC power calculation for 2.4G/5G case. Enable this
INI by default since APs advertise low TPE powers for IoT, thus
lowering overall TPC power.

Change-Id: I6c07bbd684579c2fa3617e49d76c75b5bf3f2815
CRs-Fixed: 2941630
Gururaj Pandurangi 3 years ago
parent
commit
5f68a0e898
1 changed files with 3 additions and 3 deletions
  1. 3 3
      components/mlme/dispatcher/inc/cfg_mlme_power.h

+ 3 - 3
components/mlme/dispatcher/inc/cfg_mlme_power.h

@@ -169,11 +169,11 @@
 
 /*
  * <ini>
- * skip_tpe_consideration - honoring TPE IE value in tx power calculation for
+ * skip_tpe_consideration - Skip TPE IE value in tx power calculation for
  * 2G/5G bands
  * @Min: 0
  * @Max: 1
- * @Default: 0
+ * @Default: 1
  *
  * This ini is to determine if the TPE IE should be considered in the Tx power
  * calculation. If the ini is set, host will consider TPE IE in case of 6GHz
@@ -189,7 +189,7 @@
  * </ini>
  */
 #define CFG_SKIP_TPE_CONSIDERATION CFG_INI_BOOL("skip_tpe_consideration", \
-						false, \
+						true, \
 						"consider TPE IE in tx power")
 
 #define CFG_MLME_POWER_ALL \