From ab46f235a0748526590dcff64acb1024a5c7d609 Mon Sep 17 00:00:00 2001 From: Harsh Kumar Bijlani Date: Tue, 9 May 2023 17:38:48 +0530 Subject: [PATCH] qcacmn: Update rx_fast_flag for Rx protocol tag feature Update rx_fast_flag for Rx protocol tag feature irrespective of enhanced_stats_en flag. Change-Id: Ibea2869cc182ad7d1683692d86b01de542cbddd0 CRs-Fixed: 3481654 --- dp/wifi3.0/dp_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dp/wifi3.0/dp_main.c b/dp/wifi3.0/dp_main.c index 4edbf5f4a6..832ee0e0d1 100644 --- a/dp/wifi3.0/dp_main.c +++ b/dp/wifi3.0/dp_main.c @@ -1346,7 +1346,7 @@ void dp_pdev_update_fast_rx_flag(struct dp_soc *soc, struct dp_pdev *pdev) uint8_t rx_fast_flag = true; /* Check if protocol tagging enable */ - if (pdev->is_rx_protocol_tagging_enabled && !pdev->enhanced_stats_en) { + if (pdev->is_rx_protocol_tagging_enabled) { rx_fast_flag = false; goto update_flag; }