ソースを参照

qcacld-3.0: Change the max wow config in FW to 5

FW offload has no wow-wakeup-filter for GC vdev because the number of
filters is limited to two but Host tries to add filter from VDEV-0 to
VDEV-2. To address this, change the max wow config in FW to five.

Change-Id: Ie44403ef127cf0160f39aa001deddee2205b4696
CRs-Fixed: 2505367
Alan Chen 5 年 前
コミット
68552e39e2
1 ファイル変更0 行追加5 行削除
  1. 0 5
      components/pmo/core/src/wlan_pmo_wow.c

+ 0 - 5
components/pmo/core/src/wlan_pmo_wow.c

@@ -462,21 +462,16 @@ uint8_t pmo_get_num_wow_filters(struct wlan_objmgr_psoc *psoc)
 {
 	struct pmo_psoc_priv_obj *psoc_ctx;
 	bool apf = false;
-	bool arp_ns = false;
 	bool pkt_filter = false;
 
 	pmo_psoc_with_ctx(psoc, psoc_ctx) {
 		apf = pmo_intersect_apf(psoc_ctx);
-		arp_ns = pmo_intersect_arp_ns_offload(psoc_ctx);
 		pkt_filter = pmo_intersect_packet_filter(psoc_ctx);
 	}
 
 	if (!apf && !pkt_filter)
 		return PMO_WOW_FILTERS_MAX;
 
-	if (arp_ns)
-		return PMO_WOW_FILTERS_ARP_NS;
-
 	return PMO_WOW_FILTERS_PKT_OR_APF;
 }