浏览代码

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 年之前
父节点
当前提交
0c9830a0c5
共有 1 个文件被更改,包括 2 次插入0 次删除
  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;
 };