qcacmn: Register monitor interrupt ops after monitor object creation

Register monitor interrupt ops after monitor object creation

CRs-Fixed: 3060183
Change-Id: Ia1936d2b124ede3f2082360140ab923f8b21fb43
This commit is contained in:
Himanshu Batra
2021-11-09 17:12:04 +05:30
committed by Madan Koyyalamudi
parent 83edce7ac2
commit 8096fd4cbf
5 changed files with 51 additions and 10 deletions

View File

@@ -1288,11 +1288,10 @@ uint32_t
dp_mon_process(struct dp_soc *soc, struct dp_intr *int_ctx,
uint32_t mac_id, uint32_t quota)
{
struct dp_mon_ops *mon_ops;
struct dp_mon_soc *mon_soc = soc->monitor_soc;
mon_ops = dp_mon_ops_get(soc);
if (mon_ops && mon_ops->mon_rx_process)
return mon_ops->mon_rx_process(soc, int_ctx,
if (mon_soc && mon_soc->mon_rx_process)
return mon_soc->mon_rx_process(soc, int_ctx,
mac_id, quota);
return 0;
}