Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29329e1a authored by Skylar Chang's avatar Skylar Chang
Browse files

msm: ipa: fix the GRO agg_count error



For mergeing ipav3 codes with ipav2, the
GRO feature is broken due to the wrong agg_count
parameter passed to IPA which always exceeds the
limit ipa-HW can take. The fix is to pass right
paratemer instead.

Change-Id: I0f2e0d503715d684e43ca41db44d56523079ae3c
Signed-off-by: default avatarSkylar Chang <chiaweic@codeaurora.org>
parent 69ac846d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2420,7 +2420,7 @@ int ipa_disable_apps_wan_cons_deaggr(uint32_t agg_size, uint32_t agg_count)
	int ret;

	IPA_API_DISPATCH_RETURN(ipa_disable_apps_wan_cons_deaggr, agg_size,
		agg_size);
		agg_count);

	return ret;
}