Browse Source

qcacmn: Use correct parameters for call to dp_tx_desc_find

Use correct parameters for call to dp_tx_desc_find in
case of rh platform

Change-Id: Ic57c68fd134511d907fb966f7a089de1614ee464
CRs-Fixed: 3615517
Pavankumar Nandeshwar 1 year ago
parent
commit
df8baa952a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dp/wifi3.0/rh/dp_rh_tx.c

+ 1 - 1
dp/wifi3.0/rh/dp_rh_tx.c

@@ -103,7 +103,7 @@ dp_tx_comp_find_tx_desc_rh(struct dp_soc *soc, uint32_t sw_cookie)
 				  (sw_cookie & DP_TX_DESC_ID_PAGE_MASK) >>
 				  (sw_cookie & DP_TX_DESC_ID_PAGE_MASK) >>
 						DP_TX_DESC_ID_PAGE_OS,
 						DP_TX_DESC_ID_PAGE_OS,
 				  (sw_cookie & DP_TX_DESC_ID_OFFSET_MASK) >>
 				  (sw_cookie & DP_TX_DESC_ID_OFFSET_MASK) >>
-						DP_TX_DESC_ID_OFFSET_OS);
+						DP_TX_DESC_ID_OFFSET_OS, false);
 	/* pool id is not matching. Error */
 	/* pool id is not matching. Error */
 	if (tx_desc && tx_desc->pool_id != pool_id) {
 	if (tx_desc && tx_desc->pool_id != pool_id) {
 		dp_tx_comp_alert("Tx Comp pool id %d not matched %d",
 		dp_tx_comp_alert("Tx Comp pool id %d not matched %d",