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

Commit 36455696 authored by Subramanian Ananthanarayanan's avatar Subramanian Ananthanarayanan Committed by Gauri Joshi
Browse files

msm: mhi_dev: Update num_reqs for ADB channel



num_reqs feild as part of chan_attr is not updated properly, it is set
to true. So there is only 1 reqs allocated for this channel. This causes
the channel to run of reqs easily causing ADB to stall. Updated num_reqs
to 50.

Change-Id: I1d4ec246c5879dbf1e9ca38ceeec7ffd6b8feccb
Signed-off-by: default avatarSubramanian Ananthanarayanan <skananth@codeaurora.org>
Signed-off-by: default avatarGauri Joshi <gaurjosh@codeaurora.org>
parent c4c21494
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -279,9 +279,9 @@ static const struct chan_attr uci_chan_attr_table[] = {
		mhi_uci_generic_client_cb,
		NULL,
		NULL,
		NULL,
		false,
		true
		true,
		50
	},
	{
		MHI_CLIENT_ADB_IN,
@@ -291,9 +291,9 @@ static const struct chan_attr uci_chan_attr_table[] = {
		mhi_uci_generic_client_cb,
		"android_adb",
		NULL,
		NULL,
		false,
		false
		true,
		50
	},
};