qcacmn: classify qmi/wmi for WMI_REQUEST_STATS_CMDID

Classify qmi/wmi by request type, only TYPE_STATION_STATS
is designed to be sent by qmi so far.  other type will
continue go with wmi.

Change-Id: Ibaee99c0a9d59b0db634e84f3c0b6e40b65a185d
CRs-Fixed: 3077792
This commit is contained in:
Jingxiang Ge
2021-11-17 20:17:39 +08:00
committed by Madan Koyyalamudi
parent 4e7ceff561
commit b966b27c3f
4 changed files with 21 additions and 7 deletions

View File

@@ -765,12 +765,14 @@ typedef struct {
* @vdev_id: vdev id
* @pdev_id: pdev_id
* @wmi_host_inst_rssi_args: Instantaneous rssi stats args
* @is_qmi_send_support: support to send by qmi or not
*/
struct stats_request_params {
uint32_t stats_id;
uint8_t vdev_id;
uint8_t pdev_id;
wmi_host_inst_rssi_args rssi_args;
bool is_qmi_send_support;
};
/**