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
This commit is contained in:
Saket Jha
2020-06-09 08:20:35 -07:00
committed by nshrivas
parent 9f20215b52
commit 160fab39e1

View File

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