diff options
author | Etienne Carriere <etienne.carriere@linaro.org> | 2021-11-09 17:08:21 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-23 13:53:03 -0500 |
commit | 7c1a9b2eb92d8af0ff4d46fe4ee70c65f922121e (patch) | |
tree | d15aa17b8dd868e3c8a64832ea79e02c847de415 /drivers | |
parent | 1662ed0c1a464b39ff5b303950c034a352054114 (diff) | |
download | u-boot-7c1a9b2eb92d8af0ff4d46fe4ee70c65f922121e.zip u-boot-7c1a9b2eb92d8af0ff4d46fe4ee70c65f922121e.tar.gz u-boot-7c1a9b2eb92d8af0ff4d46fe4ee70c65f922121e.tar.bz2 |
tee: optee: remove unused duplicated login Id macros
Remove unused OPTEE_MSG_LOGIN_* ID macros as suitable TEE_LOGIN_* ID
macros are already defined tee.h.
Cc: Jens Wiklander <jens.wiklander@linaro.org>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tee/optee/optee_msg.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/tee/optee/optee_msg.h b/drivers/tee/optee/optee_msg.h index 8d40ce6..a8ef926 100644 --- a/drivers/tee/optee/optee_msg.h +++ b/drivers/tee/optee/optee_msg.h @@ -87,16 +87,6 @@ #define OPTEE_MSG_ATTR_CACHE_PREDEFINED 0 /* - * Same values as TEE_LOGIN_* from TEE Internal API - */ -#define OPTEE_MSG_LOGIN_PUBLIC 0x00000000 -#define OPTEE_MSG_LOGIN_USER 0x00000001 -#define OPTEE_MSG_LOGIN_GROUP 0x00000002 -#define OPTEE_MSG_LOGIN_APPLICATION 0x00000004 -#define OPTEE_MSG_LOGIN_APPLICATION_USER 0x00000005 -#define OPTEE_MSG_LOGIN_APPLICATION_GROUP 0x00000006 - -/* * Page size used in non-contiguous buffer entries */ #define OPTEE_MSG_NONCONTIG_PAGE_SIZE 4096 @@ -279,7 +269,7 @@ struct optee_msg_arg { * parameters to pass the following information: * param[0].u.value.a-b uuid of Trusted Application * param[1].u.value.a-b uuid of Client - * param[1].u.value.c Login class of client OPTEE_MSG_LOGIN_* + * param[1].u.value.c Login class of client TEE_LOGIN_* * * OPTEE_MSG_CMD_INVOKE_COMMAND invokes a command a previously opened * session to a Trusted Application. struct optee_msg_arg::func is Trusted |