Merge "msm: secure_buffer: fix scm call argument layout"

This commit is contained in:
Linux Build Service Account 2016-11-02 14:41:40 -07:00 committed by Gerrit - the friendly Code Review server
commit 8a4e6fcee3

View file

@ -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;
};
@ -209,7 +209,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;
}