qcacld-3.0: Changed the CFG_HE_TRIG_PAD default value to 16 us

Made the default value to advertise trigger frame padding
duration as 16 us so as to honor HE MAC capabilities sent by FW

Change-Id: I1bf75965f1b9b46d61c94997273621a6e9de46c1
CRs-Fixed: 2667623
This commit is contained in:
Utkarsh Bhatnagar
2020-04-21 15:59:18 +05:30
committed by nshrivas
parent 8cac36242e
commit bc3f1bfbb8
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -66,7 +66,7 @@
"he_trig_pad", \
0, \
2, \
0, \
2, \
CFG_VALUE_OR_DEFAULT, \
"HE Trig Pad")

View File

@@ -576,7 +576,8 @@ QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
he_cap->min_frag_size;
if (cfg_in_range(CFG_HE_TRIG_PAD, he_cap->trigger_frm_mac_pad))
mlme_obj->cfg.he_caps.dot11_he_cap.trigger_frm_mac_pad =
he_cap->trigger_frm_mac_pad;
QDF_MIN(he_cap->trigger_frm_mac_pad,
mlme_obj->cfg.he_caps.dot11_he_cap.trigger_frm_mac_pad);
if (cfg_in_range(CFG_HE_MTID_AGGR_RX, he_cap->multi_tid_aggr_rx_supp))
mlme_obj->cfg.he_caps.dot11_he_cap.multi_tid_aggr_rx_supp =
he_cap->multi_tid_aggr_rx_supp;