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
This commit is contained in:
Debasis Das
2022-04-13 19:58:44 +05:30
committed by Madan Koyyalamudi
parent 4b88dddd72
commit d9140bac7b

View File

@@ -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);
}
/**