Browse Source

qcacmn: Additional RNR Cache to support 11BE and legacy TBTT info

Added additional RNR cache to support legacy and 11BE TBTT info.

Change-Id: I000c990e0cb4388a66c773672b47825acdd66153
CRs-Fixed: 3570430
Basamma Yakkanahalli 2 years ago
parent
commit
0c9830a0c5
1 changed files with 2 additions and 0 deletions
  1. 2 0
      umac/mlme/include/wlan_psoc_mlme.h

+ 2 - 0
umac/mlme/include/wlan_psoc_mlme.h

@@ -101,6 +101,7 @@ struct psoc_config {
  * @psoc_vdev_rt:          PSoC Vdev response timer
  * @psoc_mlme_wakelock:    Wakelock to prevent system going to suspend
  * @rnr_6ghz_cache:        Cache of 6Ghz vap in RNR ie format
+ * @rnr_6ghz_cache_legacy: Legacy (13TBTT) cache of 6Ghz vap in RNR ie format
  * @psoc_cfg:              Psoc level configs
  */
 struct psoc_mlme_obj {
@@ -111,6 +112,7 @@ struct psoc_mlme_obj {
 	struct psoc_mlme_wakelock psoc_mlme_wakelock;
 #endif
 	struct wlan_6ghz_rnr_global_cache rnr_6ghz_cache[WLAN_UMAC_MAX_PDEVS];
+	struct wlan_6ghz_rnr_global_cache rnr_6ghz_cache_legacy[WLAN_UMAC_MAX_PDEVS];
 	struct psoc_config psoc_cfg;
 };