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

Commit 8b4ba111 authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: secure_buffer: fix scm call argument layout" into msm-4.8

parents 4d81ceda b13a28ff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ struct mem_prot_info {
struct dest_vm_and_perm_info {
	u32 vm;
	u32 perm;
	u32 *ctx;
	u64 ctx;
	u32 ctx_size;
};

@@ -210,7 +210,7 @@ populate_dest_info(int *dest_vmids, int nelements, int *dest_perms,
	for (i = 0; i < nelements; i++) {
		dest_info[i].vm = dest_vmids[i];
		dest_info[i].perm = dest_perms[i];
		dest_info[i].ctx = NULL;
		dest_info[i].ctx = 0x0;
		dest_info[i].ctx_size = 0;
	}