From d9140bac7b9b28185158a44788a302a206ddbbe6 Mon Sep 17 00:00:00 2001 From: Debasis Das Date: Wed, 13 Apr 2022 19:58:44 +0530 Subject: [PATCH] qcacmn: Fix vlan-pcp to tid mapping To program Vlan-pcp to TID mapping in hw register, tid no is passed in place of pcp value to the hal-layer.Fix this by passing the pcp value correctly to the hal API. Change-Id: Ib3bdeffc8dbaa7c5f47406316178206b2eec2c18 CRs-Fixed: 3172024 --- hal/wifi3.0/hal_tx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hal/wifi3.0/hal_tx.h b/hal/wifi3.0/hal_tx.h index e025366ee0..61b2628163 100644 --- a/hal/wifi3.0/hal_tx.h +++ b/hal/wifi3.0/hal_tx.h @@ -857,7 +857,7 @@ static inline void hal_tx_update_pcp_tid_map(hal_soc_handle_t hal_soc_hdl, { struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl; - hal_soc->ops->hal_tx_update_pcp_tid_map(hal_soc, tid, tid); + hal_soc->ops->hal_tx_update_pcp_tid_map(hal_soc, pcp, tid); } /**