qcacmn: Add INI to disable AST indication

Add INI to disable AST indication. AST disable flag will be
sent to the target in resource config.

Change-Id: If30cac010681faf06bbcaa2d492d6843e3e675d0
CRs-Fixed: 3544223
This commit is contained in:
Ripan Deuri
2023-06-26 13:02:41 +05:30
committed by Rahul Choudhary
父節點 ddd144bfd6
當前提交 8c9b52f61d
共有 5 個文件被更改,包括 43 次插入0 次删除

查看文件

@@ -5864,3 +5864,14 @@ uint32_t wlan_cfg_get_special_frame_cfg(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->special_frame_msk;
}
void wlan_cfg_set_ast_indication_disable(struct wlan_cfg_dp_soc_ctxt *cfg,
bool val)
{
cfg->fw_ast_indication_disable = val;
}
bool wlan_cfg_get_ast_indication_disable(struct wlan_cfg_dp_soc_ctxt *cfg)
{
return cfg->fw_ast_indication_disable;
}