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

Commit 6687466b authored by Eric Holmberg's avatar Eric Holmberg
Browse files

soc: qcom: glink: remove userspace buffer argument



The SMD API has been updated to remove the userspace buffer flag.

Update call into SMD API to remove userspace flag.

Change-Id: Ie9dcae6dc3880ba90f789ffd930f82879fe08452
Signed-off-by: default avatarEric Holmberg <eholmber@codeaurora.org>
parent 032ca0a8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -835,7 +835,7 @@ static int tx(struct glink_transport_if *if_ptr, uint32_t lcid,
	}
	if (rc > tx_size)
		rc = tx_size;
	rc = smd_write_segment(ch->smd_ch, data_start, rc, 0);
	rc = smd_write_segment(ch->smd_ch, data_start, rc);
	if (rc < 0) {
		pr_err("%s: write segment failed %d\n", __func__, rc);
		srcu_read_unlock(&einfo->ssr_sync, rcu_id);