Przeglądaj źródła

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
Rakesh Pillai 2 lat temu
rodzic
commit
2453258a96
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      dp/wifi3.0/rh/dp_rh_tx.c

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

@@ -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;
 		}