Commit 5ae63958 authored by Rijo Thomas's avatar Rijo Thomas Committed by Herbert Xu

tee: amdtee: remove unused variable initialization

Remove unused variable initialization from driver code.

If enabled as a compiler option, compiler may throw warning for
unused assignments.
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Fixes: 757cc3e9 ("tee: add AMD-TEE driver")
Signed-off-by: default avatarRijo Thomas <Rijo-john.Thomas@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 1372a51b
...@@ -124,8 +124,8 @@ static int amd_params_to_tee_params(struct tee_param *tee, u32 count, ...@@ -124,8 +124,8 @@ static int amd_params_to_tee_params(struct tee_param *tee, u32 count,
int handle_unload_ta(u32 ta_handle) int handle_unload_ta(u32 ta_handle)
{ {
struct tee_cmd_unload_ta cmd = {0}; struct tee_cmd_unload_ta cmd = {0};
int ret = 0;
u32 status; u32 status;
int ret;
if (!ta_handle) if (!ta_handle)
return -EINVAL; return -EINVAL;
...@@ -145,8 +145,8 @@ int handle_unload_ta(u32 ta_handle) ...@@ -145,8 +145,8 @@ int handle_unload_ta(u32 ta_handle)
int handle_close_session(u32 ta_handle, u32 info) int handle_close_session(u32 ta_handle, u32 info)
{ {
struct tee_cmd_close_session cmd = {0}; struct tee_cmd_close_session cmd = {0};
int ret = 0;
u32 status; u32 status;
int ret;
if (ta_handle == 0) if (ta_handle == 0)
return -EINVAL; return -EINVAL;
...@@ -167,8 +167,8 @@ int handle_close_session(u32 ta_handle, u32 info) ...@@ -167,8 +167,8 @@ int handle_close_session(u32 ta_handle, u32 info)
void handle_unmap_shmem(u32 buf_id) void handle_unmap_shmem(u32 buf_id)
{ {
struct tee_cmd_unmap_shared_mem cmd = {0}; struct tee_cmd_unmap_shared_mem cmd = {0};
int ret = 0;
u32 status; u32 status;
int ret;
cmd.buf_id = buf_id; cmd.buf_id = buf_id;
...@@ -183,7 +183,7 @@ int handle_invoke_cmd(struct tee_ioctl_invoke_arg *arg, u32 sinfo, ...@@ -183,7 +183,7 @@ int handle_invoke_cmd(struct tee_ioctl_invoke_arg *arg, u32 sinfo,
struct tee_param *p) struct tee_param *p)
{ {
struct tee_cmd_invoke_cmd cmd = {0}; struct tee_cmd_invoke_cmd cmd = {0};
int ret = 0; int ret;
if (!arg || (!p && arg->num_params)) if (!arg || (!p && arg->num_params))
return -EINVAL; return -EINVAL;
...@@ -229,7 +229,7 @@ int handle_map_shmem(u32 count, struct shmem_desc *start, u32 *buf_id) ...@@ -229,7 +229,7 @@ int handle_map_shmem(u32 count, struct shmem_desc *start, u32 *buf_id)
{ {
struct tee_cmd_map_shared_mem *cmd; struct tee_cmd_map_shared_mem *cmd;
phys_addr_t paddr; phys_addr_t paddr;
int ret = 0, i; int ret, i;
u32 status; u32 status;
if (!count || !start || !buf_id) if (!count || !start || !buf_id)
...@@ -294,7 +294,7 @@ int handle_open_session(struct tee_ioctl_open_session_arg *arg, u32 *info, ...@@ -294,7 +294,7 @@ int handle_open_session(struct tee_ioctl_open_session_arg *arg, u32 *info,
struct tee_param *p) struct tee_param *p)
{ {
struct tee_cmd_open_session cmd = {0}; struct tee_cmd_open_session cmd = {0};
int ret = 0; int ret;
if (!arg || !info || (!p && arg->num_params)) if (!arg || !info || (!p && arg->num_params))
return -EINVAL; return -EINVAL;
...@@ -342,7 +342,7 @@ int handle_load_ta(void *data, u32 size, struct tee_ioctl_open_session_arg *arg) ...@@ -342,7 +342,7 @@ int handle_load_ta(void *data, u32 size, struct tee_ioctl_open_session_arg *arg)
{ {
struct tee_cmd_load_ta cmd = {0}; struct tee_cmd_load_ta cmd = {0};
phys_addr_t blob; phys_addr_t blob;
int ret = 0; int ret;
if (size == 0 || !data || !arg) if (size == 0 || !data || !arg)
return -EINVAL; return -EINVAL;
......
...@@ -50,7 +50,7 @@ static int amdtee_open(struct tee_context *ctx) ...@@ -50,7 +50,7 @@ static int amdtee_open(struct tee_context *ctx)
static void release_session(struct amdtee_session *sess) static void release_session(struct amdtee_session *sess)
{ {
int i = 0; int i;
/* Close any open session */ /* Close any open session */
for (i = 0; i < TEE_NUM_SESSIONS; ++i) { for (i = 0; i < TEE_NUM_SESSIONS; ++i) {
...@@ -173,7 +173,7 @@ static int copy_ta_binary(struct tee_context *ctx, void *ptr, void **ta, ...@@ -173,7 +173,7 @@ static int copy_ta_binary(struct tee_context *ctx, void *ptr, void **ta,
u16 hi_ver; u16 hi_ver;
u8 seq_n[8]; u8 seq_n[8];
} *uuid = ptr; } *uuid = ptr;
int n = 0, rc = 0; int n, rc = 0;
n = snprintf(fw_name, TA_PATH_MAX, n = snprintf(fw_name, TA_PATH_MAX,
"%s/%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x.bin", "%s/%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x.bin",
...@@ -219,9 +219,9 @@ int amdtee_open_session(struct tee_context *ctx, ...@@ -219,9 +219,9 @@ int amdtee_open_session(struct tee_context *ctx,
struct amdtee_context_data *ctxdata = ctx->data; struct amdtee_context_data *ctxdata = ctx->data;
struct amdtee_session *sess = NULL; struct amdtee_session *sess = NULL;
u32 session_info; u32 session_info;
void *ta = NULL;
size_t ta_size; size_t ta_size;
int rc = 0, i; int rc, i;
void *ta;
if (arg->clnt_login != TEE_IOCTL_LOGIN_PUBLIC) { if (arg->clnt_login != TEE_IOCTL_LOGIN_PUBLIC) {
pr_err("unsupported client login method\n"); pr_err("unsupported client login method\n");
...@@ -368,8 +368,8 @@ int amdtee_map_shmem(struct tee_shm *shm) ...@@ -368,8 +368,8 @@ int amdtee_map_shmem(struct tee_shm *shm)
void amdtee_unmap_shmem(struct tee_shm *shm) void amdtee_unmap_shmem(struct tee_shm *shm)
{ {
struct amdtee_shm_data *shmnode;
u32 buf_id; u32 buf_id;
struct amdtee_shm_data *shmnode = NULL;
if (!shm) if (!shm)
return; return;
...@@ -434,9 +434,9 @@ static const struct tee_desc amdtee_desc = { ...@@ -434,9 +434,9 @@ static const struct tee_desc amdtee_desc = {
static int __init amdtee_driver_init(void) static int __init amdtee_driver_init(void)
{ {
struct amdtee *amdtee = NULL;
struct tee_device *teedev; struct tee_device *teedev;
struct tee_shm_pool *pool = ERR_PTR(-EINVAL); struct tee_shm_pool *pool;
struct amdtee *amdtee;
int rc; int rc;
rc = psp_check_tee_status(); rc = psp_check_tee_status();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment