Commit 1115899e authored by Dan Carpenter's avatar Dan Carpenter Committed by Jens Wiklander
Browse files

tee: remove unnecessary NULL check in tee_shm_alloc()



Smatch complains that "ctx" isn't checked consistently:

    drivers/tee/tee_shm.c:164 tee_shm_alloc()
    warn: variable dereferenced before check 'ctx' (see line 95)

I audited the callers and "ctx" can't be NULL so the check can be
removed.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
parent ae83d0b4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -161,7 +161,6 @@ struct tee_shm *tee_shm_alloc(struct tee_context *ctx, size_t size, u32 flags)
		}
	}

	if (ctx)
	teedev_ctx_get(ctx);

	return shm;