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

Commit 19cf065e authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa: fix to check for ECONNRESET"

parents f29b6320 18866f39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -439,7 +439,7 @@ static int ipa3_check_qmi_response(int rc,
			"Timeout for qmi request id %d\n", req_id);
			return rc;
		}
		if ((rc == -ENETRESET) || (rc == -ENODEV)) {
		if ((rc == -ENETRESET) || (rc == -ENODEV) || (rc == -ECONNRESET)) {
			IPAWANERR(
			"SSR while waiting for qmi request id %d\n", req_id);
			return rc;