Browse Source

qcacmn: Send HT/VHT CAPs IE to firmware per band

Send HT/VHT CAPs IE to firmware per band. This will allow certain
features like LDPC to be configured per band.

Change-Id: I21c83af984f9be3ade46121ef148b52568c3ad0f
CRs-Fixed: 1059454
Naveen Rawat 8 years ago
parent
commit
24eb14ce29
2 changed files with 2 additions and 0 deletions
  1. 1 0
      wmi/inc/wmi_unified_param.h
  2. 1 0
      wmi/src/wmi_unified_tlv.c

+ 1 - 0
wmi/inc/wmi_unified_param.h

@@ -2598,6 +2598,7 @@ struct vdev_ie_info_param {
 	uint32_t ie_id;
 	uint32_t length;
 	uint32_t ie_source;
+	uint32_t band;
 	uint8_t *data;
 };
 

+ 1 - 0
wmi/src/wmi_unified_tlv.c

@@ -8993,6 +8993,7 @@ QDF_STATUS send_process_set_ie_info_cmd_tlv(wmi_unified_t wmi_handle,
 	cmd->vdev_id = ie_info->vdev_id;
 	cmd->ie_id = ie_info->ie_id;
 	cmd->ie_len = ie_info->length;
+	cmd->band = ie_info->band;
 
 	WMI_LOGD(FL("IE:%d of size:%d sent for vdev:%d"), ie_info->ie_id,
 		 ie_info->length, ie_info->vdev_id);