Browse Source

qcacld-3.0: Correct arguments for fisa rx flow setup

Due to recent changes, hal_rx_flow_setup_fse() should receive hal_soc as
argument during rx_flow setup.

Change-Id: Ic39f476b211417469e004d85cd03c6b868d97405
CRs-Fixed: 2706239
Saket Jha 4 years ago
parent
commit
160fab39e1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/dp/txrx3.0/dp_fisa_rx.c

+ 2 - 1
core/dp/txrx3.0/dp_fisa_rx.c

@@ -225,7 +225,8 @@ dp_rx_fisa_setup_hw_fse(struct dp_rx_fst *fisa_hdl,
 	flow.tuple_info.src_port = rx_flow_info->src_port;
 	flow.tuple_info.l4_protocol = rx_flow_info->l4_protocol;
 	flow.reo_destination_handler = HAL_RX_FSE_REO_DEST_FT;
-	hw_fse = hal_rx_flow_setup_fse(fisa_hdl->hal_rx_fst, hashed_flow_idx,
+	hw_fse = hal_rx_flow_setup_fse(fisa_hdl->soc_hdl->hal_soc,
+				       fisa_hdl->hal_rx_fst, hashed_flow_idx,
 				       &flow);
 
 	return hw_fse;