Commit 80ec6f5d authored by Colin Ian King's avatar Colin Ian King Committed by Jens Wiklander
Browse files

tee: shm: make function __tee_shm_alloc static



The function __tee_shm_alloc is local to the source and does
not need to be in global scope, so make it static.

Cleans up sparse warning:
symbol '__tee_shm_alloc' was not declared. Should it be static?

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
parent cdbcf83d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ static const struct dma_buf_ops tee_shm_dma_buf_ops = {
	.mmap = tee_shm_op_mmap,
};

struct tee_shm *__tee_shm_alloc(struct tee_context *ctx,
static struct tee_shm *__tee_shm_alloc(struct tee_context *ctx,
				       struct tee_device *teedev,
				       size_t size, u32 flags)
{