diff options
| author | tinlin <tinlin@codeaurora.org> | 2018-04-11 19:46:17 +0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-04-12 20:22:23 -0700 |
| commit | 2cc19aa9b6f645e1b8aebe8a853adfe952acdda2 (patch) | |
| tree | 259b308a417aeb49eff0e43a8e9a0303f2dc61a2 | |
| parent | 5d5c6604ec5aa46d056a310650eb79df99746431 (diff) | |
qcacld-2.0: CL 4203798 - Update fw common interface files
Define ppdu_id in wmi_mgmt_tx_compl_event_fixed_param
& wmi_offchan_data_tx_compl_event_fixed_param
Change-Id: I2eaab1b9ef6bad32926f2b5b210217140af1b359
CRs-fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 10 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index ba7d6ea7db48..752d1afb7f1d 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -5159,6 +5159,11 @@ typedef struct { * See macros starting with WMI_PDEV_ID_ for values. */ A_UINT32 pdev_id; + /* ppdu_id + * Hardware PPDU ID for tracking the completion stats + * A ppdu_id value of 0x0 is invalid, and should be ignored. + */ + A_UINT32 ppdu_id; } wmi_mgmt_tx_compl_event_fixed_param; typedef struct { @@ -5169,6 +5174,11 @@ typedef struct { * See macros starting with WMI_PDEV_ID_ for values. */ A_UINT32 pdev_id; + /* ppdu_id + * Hardware PPDU ID for tracking the completion stats + * A ppdu_id value of 0x0 is invalid, and should be ignored. + */ + A_UINT32 ppdu_id; } wmi_offchan_data_tx_compl_event_fixed_param; typedef struct { diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 650473cd77a5..8651a950935e 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 509 +#define __WMI_REVISION_ 510 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
