Merge "msm: secure_buffer: fix scm call argument layout"
This commit is contained in:
commit
8a4e6fcee3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue