qcacmn: Add vdev parameter wmi_vdev_param_set_traffic_config

Add mapping of wmi_vdev_param_set_traffic_config
to WMI_VDEV_PARAM_VDEV_TRAFFIC_CONFIG.

Change-Id: I2147cad3fb5726551de64edcfc41bee2707150a6
CRs-Fixed: 3191504
This commit is contained in:
Liangwei Dong
2022-05-05 17:16:40 +08:00
committed by Madan Koyyalamudi
parent feb53a95ee
commit 8b89b06a6a
2 changed files with 3 additions and 0 deletions

View File

@@ -5350,6 +5350,7 @@ typedef enum {
wmi_vdev_param_set_default_ll_config, wmi_vdev_param_set_default_ll_config,
wmi_vdev_param_set_multi_client_ll_feature_config, wmi_vdev_param_set_multi_client_ll_feature_config,
#endif #endif
wmi_vdev_param_set_traffic_config,
} wmi_conv_vdev_param_id; } wmi_conv_vdev_param_id;
/** /**

View File

@@ -573,6 +573,8 @@ static const uint32_t vdev_param_tlv[] = {
[wmi_vdev_param_set_multi_client_ll_feature_config] = [wmi_vdev_param_set_multi_client_ll_feature_config] =
WMI_VDEV_PARAM_MULTI_CLIENT_LL_FEATURE_CONFIGURATION, WMI_VDEV_PARAM_MULTI_CLIENT_LL_FEATURE_CONFIGURATION,
#endif #endif
[wmi_vdev_param_set_traffic_config] =
WMI_VDEV_PARAM_VDEV_TRAFFIC_CONFIG,
}; };
#endif #endif