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

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

Merge "rpmsg: glink: use correct data pointer in packets larger than 8k"

parents 9e15fd0a 7fa2839b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1510,6 +1510,7 @@ static int __qcom_glink_send(struct glink_channel *channel,
	}

	while (left_size > 0) {
		data = (void *)((char *)data + chunk_size);
		chunk_size = left_size;
		if (chunk_size > SZ_8K)
			chunk_size = SZ_8K;