qcacmn: Add HTT ring setup for monitor rings

Add HTT ring setup for monitor source and destination rings

CRs-Fixed: 3010856
Change-Id: Ice96ed938a25069fd60f07e2a4bebd9ad0184200
This commit is contained in:
Naga
2021-10-05 00:26:02 +05:30
committed by Madan Koyyalamudi
parent 92ac36e016
commit 1648e13dbe
5 changed files with 68 additions and 21 deletions

View File

@@ -1989,8 +1989,9 @@ QDF_STATUS dp_mon_htt_srng_setup(struct dp_soc *soc,
struct dp_mon_ops *mon_ops;
mon_ops = dp_mon_ops_get(soc);
if (mon_ops && mon_ops->mon_htt_srng_setup)
return mon_ops->mon_htt_srng_setup(soc, pdev, mac_id, mac_for_pdev);
if (mon_ops && mon_ops->mon_pdev_htt_srng_setup)
return mon_ops->mon_pdev_htt_srng_setup(soc, pdev,
mac_id, mac_for_pdev);
return QDF_STATUS_E_FAILURE;
}