Merge "msm: ipa: Remove assert on ep empty"
This commit is contained in:
commit
0d7730d800
1 changed files with 3 additions and 6 deletions
|
@ -2483,8 +2483,8 @@ check_non_ap_ep_empty:
|
||||||
ret = 0;
|
ret = 0;
|
||||||
} else if (retry) {
|
} else if (retry) {
|
||||||
retry--;
|
retry--;
|
||||||
usleep_range(IPA_UC_WAIT_MIN_SLEEP,
|
usleep_range(IPA_UC_WAIT_MIN_SLEEP * 5,
|
||||||
IPA_UC_WAII_MAX_SLEEP);
|
IPA_UC_WAII_MAX_SLEEP * 5);
|
||||||
goto check_non_ap_ep_empty;
|
goto check_non_ap_ep_empty;
|
||||||
} else {
|
} else {
|
||||||
IPAERR
|
IPAERR
|
||||||
|
@ -2548,11 +2548,8 @@ int ipa_q6_post_shutdown_cleanup(void)
|
||||||
if (res)
|
if (res)
|
||||||
IPAERR("ep %d not empty\n",
|
IPAERR("ep %d not empty\n",
|
||||||
ipa2_get_ep_mapping(client_idx));
|
ipa2_get_ep_mapping(client_idx));
|
||||||
else
|
|
||||||
res = ipa_uc_reset_pipe(client_idx);
|
|
||||||
} else {
|
|
||||||
res = ipa_uc_reset_pipe(client_idx);
|
|
||||||
}
|
}
|
||||||
|
res = ipa_uc_reset_pipe(client_idx);
|
||||||
if (res)
|
if (res)
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue