Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libqcomtee/src/linux/tee.h
Original file line number Diff line number Diff line change
Expand Up @@ -424,13 +424,13 @@ struct tee_ioctl_shm_register_data {

/**
* struct tee_ioctl_invoke_func_arg - Invokes an object in a Trusted Application.
* @object: [in] Object id
* @id: [in] Object id
* @op: [in] Object operation, specific to the object
* @ret: [out] return value
* @num_params [in] number of parameters following this struct
*/
struct tee_ioctl_object_invoke_arg {
__u64 object;
__u64 id;
__u32 op;
__u32 ret;
__u32 num_params;
Expand Down
2 changes: 1 addition & 1 deletion libqcomtee/src/qcomtee_object.c
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ int qcomtee_object_invoke(struct qcomtee_object *object, qcomtee_op_t op,

/* INVOKE object: */
arg->invoke.op = op;
arg->invoke.object = object->tee_object_id;
arg->invoke.id = object->tee_object_id;
arg->invoke.num_params = num_params;
tee_params = (struct tee_ioctl_param *)(&arg->invoke + 1);

Expand Down
Loading