qcacmn: Remove redundant field for rxmon global enable

Remove redundant field for rxmon global enable
and fix writing global enable field to correct
dword

Change-Id: I4efc0da559dce873bcb8721aeb0d7b7410b39dd9
CRs-Fixed: 3150784
This commit is contained in:
Naga
2022-02-24 15:38:43 +05:30
committed by Madan Koyyalamudi
szülő 648757b8ca
commit 9ad28af16e
3 fájl változott, egészen pontosan 2 új sor hozzáadva és 8 régi sor törölve

Fájl megtekintése

@@ -1040,8 +1040,8 @@ int htt_h2t_rx_ring_cfg(struct htt_soc *htt_soc, int pdev_id,
*msg_word = 0;
HTT_H2T_MSG_TYPE_SET(*msg_word, HTT_H2T_MSG_TYPE_RX_RING_SELECTION_CFG);
if (htt_tlv_filter->rx_mon_global_en)
*msg_word |= (1 << RXMON_GLOBAL_EN_SHIFT);
/* applicable only for post Li */
dp_rx_mon_enable(soc->dp_soc, msg_word, htt_tlv_filter);
/*
* pdev_id is indexed from 0 whereas mac_id is indexed from 1
@@ -1080,7 +1080,6 @@ int htt_h2t_rx_ring_cfg(struct htt_soc *htt_soc, int pdev_id,
ring_buf_size);
dp_mon_rx_packet_length_set(soc->dp_soc, msg_word, htt_tlv_filter);
dp_rx_mon_enable(soc->dp_soc, msg_word, htt_tlv_filter);
/* word 2 */
msg_word++;