qcacmn: support 64 bits timestamp in wmi mgmt completion

added support for 64 bits timestamp that come for each tx
wmi mgmt completion

Change-Id: I70d66bcbe04aebad507a872faa97df8ab9752657
This commit is contained in:
nobelj
2019-12-06 14:23:27 -08:00
committed by nshrivas
parent ee037a0f89
commit cf57a9af2a
3 changed files with 38 additions and 3 deletions

View File

@@ -5585,12 +5585,16 @@ typedef struct {
* @status: WMI_MGMT_TX_COMP_STATUS_TYPE
* @pdev_id: pdev_id
* @ppdu_id: ppdu_id
* @retries_count: retries count
* @tx_tsf: 64 bits completion timestamp
*/
typedef struct {
uint32_t desc_id;
uint32_t status;
uint32_t pdev_id;
uint32_t ppdu_id;
uint32_t retries_count;
uint64_t tx_tsf;
} wmi_host_mgmt_tx_compl_event;
/**