fw-api: CL 7806323 - update fw common interface files

Change-Id: I582de37c041aef7512713af25c2ca5e658b58fdd
WMI: add further train_rate_series info to peer_smart_ant_set_train
CRs-Fixed: 2262693
This commit is contained in:
spuligil
2019-08-07 06:03:36 -07:00
committed by nshrivas
parent b322eead33
commit 1c752c282f
2 changed files with 14 additions and 2 deletions

View File

@@ -22104,12 +22104,24 @@ typedef struct {
typedef struct { typedef struct {
A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_peer_smart_ant_set_train_antenna_param */ A_UINT32 tlv_header; /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_peer_smart_ant_set_train_antenna_param */
/* rate array */ /* rate array */
A_UINT32 train_rate_series; union {
/* train_rate_series:
* original name, used for 8-bit rate-code implementations
*/
A_UINT32 train_rate_series;
/* train_rate_series_lo:
* Contains the lower 32 bits of rate array, for larger rate-code
* implementations. This field is paired with train_rate_series_hi.
*/
A_UINT32 train_rate_series_lo;
};
/* antenna array */ /* antenna array */
A_UINT32 train_antenna_series; A_UINT32 train_antenna_series;
/* Rate flags */ /* Rate flags */
/* TODO: For future use? */ /* TODO: For future use? */
A_UINT32 rc_flags; A_UINT32 rc_flags;
/* rate array -- continued */
A_UINT32 train_rate_series_hi; /* Higher 32 bits of rate array */
} wmi_peer_smart_ant_set_train_antenna_param; } wmi_peer_smart_ant_set_train_antenna_param;
typedef struct { typedef struct {

View File

@@ -36,7 +36,7 @@
#define __WMI_VER_MINOR_ 0 #define __WMI_VER_MINOR_ 0
/** WMI revision number has to be incremented when there is a /** WMI revision number has to be incremented when there is a
* change that may or may not break compatibility. */ * change that may or may not break compatibility. */
#define __WMI_REVISION_ 706 #define __WMI_REVISION_ 707
/** The Version Namespace should not be normally changed. Only /** The Version Namespace should not be normally changed. Only
* host and firmware of the same WMI namespace will work * host and firmware of the same WMI namespace will work