qcacmn: Extend support for 'setratemask' cmd

Currently the 'setratemask' command supports setting
the rate mask for upto MCS0-9 and NSS 4. Add 'lower32_2'
field in the ratemask_params struct to extend support
for the 'setratemask' command to set rate mask
for upto MCS0-11 and NSS 8.

Change-Id: I9c06ae238142dca37df9826ca34449dd34ee6782
CRs-fixed: 2251392
This commit is contained in:
Rhythm Patwa
2018-06-19 10:43:00 -07:00
committed by nshrivas
parent 397f08c216
commit b5ca01d982

View File

@@ -10837,8 +10837,11 @@ static QDF_STATUS send_vdev_config_ratemask_cmd_tlv(wmi_unified_t wmi_handle,
cmd->type = param->type;
cmd->mask_lower32 = param->lower32;
cmd->mask_higher32 = param->higher32;
WMI_LOGI("Setting vdev ratemask vdev id = 0x%X, type = 0x%X, mask_l32 = 0x%X mask_h32 = 0x%X\n",
param->vdev_id, param->type, param->lower32, param->higher32);
cmd->mask_lower32_2 = param->lower32_2;
WMI_LOGI("Setting vdev ratemask vdev id = 0x%X, type = 0x%X"
"mask_l32 = 0x%X mask_h32 = 0x%X mask_l32_2 = 0x%X\n",
param->vdev_id, param->type, param->lower32,
param->higher32, param->lower32_2);
if (wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_VDEV_RATEMASK_CMDID)) {