qcacmn: Add bit mask control for special frame deliver

Add bit mask control for special frames deliver in error
path.

Change-Id: I9f30e53028bf75d02578e5132f62b15ea480d1bd
CRs-Fixed: 3457564
This commit is contained in:
Yu Tian
2023-04-19 01:19:49 -07:00
committato da Madan Koyyalamudi
parent 296729e604
commit fc12609405
4 ha cambiato i file con 48 aggiunte e 3 eliminazioni

Vedi File

@@ -4277,6 +4277,9 @@ wlan_cfg_soc_attach(struct cdp_ctrl_objmgr_psoc *psoc)
cfg_get(psoc, CFG_DP_POINTER_NUM_THRESHOLD_RX);
wlan_soc_tx_packet_inspect_attach(psoc, wlan_cfg_ctx);
wlan_soc_local_pkt_capture_cfg_attach(psoc, wlan_cfg_ctx);
wlan_cfg_ctx->special_frame_msk =
cfg_get(psoc, CFG_SPECIAL_FRAME_MSK);
return wlan_cfg_ctx;
}
#endif
@@ -5652,3 +5655,8 @@ wlan_cfg_get_pointer_num_threshold_rx(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->pointer_num_threshold_rx;
}
uint32_t wlan_cfg_get_special_frame_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->special_frame_msk;
}