qcacmn: Fix build error when DISABLE_MON_CONFIG is defined

Fix below errors when the item DISABLE_MON_CONFIG is defined:
No return value for below two APIs:
dp_tx_mon_buf_refill() and dp_rx_mon_buf_refill()

CRs-Fixed: 3205083
Change-Id: If449616e30e75c23c7b25fb449a0ad8e501529aa
这个提交包含在:
Guisen Yang
2022-05-24 13:58:15 +08:00
提交者 Madan Koyyalamudi
父节点 77f302907b
当前提交 370e3bd4e9

查看文件

@@ -2344,11 +2344,13 @@ dp_tx_mon_process(struct dp_soc *soc, struct dp_intr *int_ctx,
static inline
uint32_t dp_tx_mon_buf_refill(struct dp_intr *int_ctx)
{
return 0;
}
static inline
uint32_t dp_rx_mon_buf_refill(struct dp_intr *int_ctx)
{
return 0;
}
#endif