summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspuligil <spuligil@codeaurora.org>2019-05-23 06:03:33 -0700
committerspuligil <spuligil@codeaurora.org>2019-05-23 06:03:34 -0700
commite73218f8583326fa3bc6ba8db5375790e51b228c (patch)
treec3aac5b0a8b0adb570357a825027f4eb031214fc
parent97627c1171d74f9139e3f44470e67260531f944e (diff)
fw-api: CL 7212791 - update fw common interface files
HTT stats: add skipped_rate_ctrl flag in htt_ppdu_stats_user_rate TLV Change-Id: Ib904b03bc0d057eafded227a1296f68dec433037 CRs-Fixed: 2262693
-rw-r--r--fw/htt_ppdu_stats.h30
1 files changed, 17 insertions, 13 deletions
diff --git a/fw/htt_ppdu_stats.h b/fw/htt_ppdu_stats.h
index a3594eec8652..7181561e5c2b 100644
--- a/fw/htt_ppdu_stats.h
+++ b/fw/htt_ppdu_stats.h
@@ -1233,23 +1233,27 @@ typedef struct {
* BIT [ 27: 24] :- gi - HTT_PPDU_STATS_GI
* BIT [ 28: 28] :- dcm
* BIT [ 29: 29] :- ldpc
- * BIT [ 31: 30] :- reserved4
+ * BIT [ 30: 30] :- valid_skipped_rate_ctrl
+ * This flag indicates whether the skipped_rate_ctrl
+ * flag should be ignored, or if it holds valid data.
+ * BIT [ 31: 31] :- skipped_rate_ctrl
*/
union {
A_UINT32 rate_info;
struct {
- A_UINT32 ltf_size: 2,
- stbc: 1,
- he_re: 1,
- txbf: 4,
- bw: 4,
- nss: 4,
- mcs: 4,
- preamble: 4,
- gi: 4,
- dcm: 1,
- ldpc: 1,
- reserved4: 2;
+ A_UINT32 ltf_size: 2,
+ stbc: 1,
+ he_re: 1,
+ txbf: 4,
+ bw: 4,
+ nss: 4,
+ mcs: 4,
+ preamble: 4,
+ gi: 4,
+ dcm: 1,
+ ldpc: 1,
+ valid_skipped_rate_ctrl: 1,
+ skipped_rate_ctrl: 1;
};
};