ソースを参照

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

HTT stats: fix typo in struct field name: tranmissions -> transmissions
Fix typo from CL 7520296: change: add correct name num_sr_tx_transmissions as an alias for the original num_sr_tx_tranmissions name.

Change-Id: I083c22c6daf88e57a951b0490363b5f26ed4a024
CRs-Fixed: 2262693
spuligil 5 年 前
コミット
115701e35d
1 ファイル変更5 行追加2 行削除
  1. 5 2
      fw/htt_stats.h

+ 5 - 2
fw/htt_stats.h

@@ -3867,12 +3867,15 @@ typedef struct {
 
     A_UINT32 num_obss_tx_ppdu_success;
     A_UINT32 num_obss_tx_ppdu_failure;
-    /* num_sr_tx_tranmissions:
+    /* num_sr_tx_transmissions:
      * Counter of TX done by aborting other BSS RX with spatial reuse
      * (for cases where rx RSSI from other BSS is below the packet-detection
      * threshold for doing spatial reuse)
      */
-    A_UINT32 num_sr_tx_tranmissions;
+    union {
+        A_UINT32 num_sr_tx_transmissions; /* CORRECTED - use this one */
+        A_UINT32 num_sr_tx_tranmissions;  /* DEPRECATED - has typo in name */
+    };
     /* num_sr_rx_ge_pd_rssi_thr
      * counter of rx from other BSS for which RSSI was above the
      * packet-detection threshold specified for enabling spatial reuse