qcacmn: Fix mpdu logging option in htt command

Fix the mpdu logging option in htt command so that msdu/mpdu
logging is correctly written into the register.

Change-Id: I98b8a1a78cc0cfae37e91e9e3e489ac54139ff75
CRs-Fixed: 3265015
This commit is contained in:
Nandha Kishore Easwaran
2022-08-09 10:35:48 +05:30
committed by Madan Koyyalamudi
父節點 226e9258ba
當前提交 0585386f57

查看文件

@@ -1211,9 +1211,12 @@ int htt_h2t_tx_ring_cfg(struct htt_soc *htt_soc, int pdev_id,
DATA,
htt_tlv_filter->data_mpdu_log);
HTT_TX_MONITOR_CFG_DMA_MPDU_MGMT_SET(*msg_word, 1);
HTT_TX_MONITOR_CFG_DMA_MPDU_CTRL_SET(*msg_word, 1);
HTT_TX_MONITOR_CFG_DMA_MPDU_DATA_SET(*msg_word, 1);
HTT_TX_MONITOR_CFG_DMA_MPDU_MGMT_SET(*msg_word,
htt_tlv_filter->mgmt_mpdu_log);
HTT_TX_MONITOR_CFG_DMA_MPDU_CTRL_SET(*msg_word,
htt_tlv_filter->ctrl_mpdu_log);
HTT_TX_MONITOR_CFG_DMA_MPDU_DATA_SET(*msg_word,
htt_tlv_filter->data_mpdu_log);
pkt = htt_htc_pkt_alloc(soc);
if (!pkt)