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

Commit 22777a5e authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa4: Fix to pass correct arguments to qmi_txn_wait function"

parents 94fa8c8f 8c8d1176
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -399,7 +399,7 @@ static int ipa3_qmi_send_req_wait(struct qmi_handle *client_handle,
		qmi_txn_cancel(&txn);
		return ret;
	}
	ret = qmi_txn_wait(&txn, timeout_ms);
	ret = qmi_txn_wait(&txn, msecs_to_jiffies(timeout_ms));

	return ret;
}