From 32f0002c21b4a6ae58465d6f74de170f31f40124 Mon Sep 17 00:00:00 2001 From: Gyanranjan Hazarika Date: Tue, 13 Mar 2018 17:09:08 -0700 Subject: [PATCH] qcacmn: WMI support to set autorate HE GI LTF combinations WMI_VDEV_PARAM_AUTORATE_MISC_CFG is introduced to set HE GI LTF combinations in case of autorate adaptation. Add support for the same in host side wmi files. Change-Id: Idf567d771539b17e669ddab8b85092e3cbf9d3c8 CRs-fixed: 2204393 --- wmi_unified_tlv.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index 1b00360c0a..d1f60e78de 100644 --- a/wmi_unified_tlv.c +++ b/wmi_unified_tlv.c @@ -23740,13 +23740,16 @@ static void populate_vdev_param_tlv(uint32_t *vdev_param) vdev_param[wmi_vdev_param_proxy_sta] = WMI_VDEV_PARAM_PROXY_STA; vdev_param[wmi_vdev_param_bw_nss_ratemask] = WMI_VDEV_PARAM_BW_NSS_RATEMASK; - vdev_param[wmi_vdev_param_set_he_ltf] = WMI_VDEV_PARAM_HE_LTF; + vdev_param[wmi_vdev_param_set_he_ltf] = + WMI_VDEV_PARAM_HE_LTF; vdev_param[wmi_vdev_param_rate_dropdown_bmap] = WMI_VDEV_PARAM_RATE_DROPDOWN_BMAP; vdev_param[wmi_vdev_param_set_ba_mode] = WMI_VDEV_PARAM_BA_MODE; vdev_param[wmi_vdev_param_capabilities] = WMI_VDEV_PARAM_CAPABILITIES; + vdev_param[wmi_vdev_param_autorate_misc_cfg] = + WMI_VDEV_PARAM_AUTORATE_MISC_CFG; } #endif