qcacmn: Pass SoC as args for dp_tx_desc_release for Rhine targets

Due to a change in proto-type for dp_tx_desc_release, there is
a compilation failure for Rhine targets.

Fix the compilation failure for Rhine targets by passing the
required args for dp_tx_desc_release.

Change-Id: I422c0fe3a4e96c9e2c3cd42963236159a71a244e
CRs-Fixed: 3507470
This commit is contained in:
Rakesh Pillai
2023-05-23 09:47:10 -07:00
committed by Rahul Choudhary
부모 415a9c3a40
커밋 2453258a96

파일 보기

@@ -699,7 +699,7 @@ void dp_tx_compl_handler_rh(struct dp_soc *soc, qdf_nbuf_t htt_msg)
tx_desc->id);
tx_desc->flags |= DP_TX_DESC_FLAG_TX_COMP_ERR;
dp_tx_comp_free_buf(soc, tx_desc, false);
dp_tx_desc_release(tx_desc, tx_desc->pool_id);
dp_tx_desc_release(soc, tx_desc, tx_desc->pool_id);
goto next_msdu;
}