Commit 069969d6 authored by Yue Haibing's avatar Yue Haibing Committed by Jens Wiklander

tee: Remove unused declarations

Commit 4fb0a5eb ("tee: add OP-TEE driver") declared but never implemented
optee_supp_read()/optee_supp_write().
Commit 967c9cca ("tee: generic TEE subsystem") never implemented tee_shm_init().
Signed-off-by: default avatarYue Haibing <yuehaibing@huawei.com>
Reviewed-by: default avatarSumit Garg <sumit.garg@linaro.org>
Signed-off-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
parent 2dde18cd
...@@ -238,8 +238,6 @@ int optee_notif_send(struct optee *optee, u_int key); ...@@ -238,8 +238,6 @@ int optee_notif_send(struct optee *optee, u_int key);
u32 optee_supp_thrd_req(struct tee_context *ctx, u32 func, size_t num_params, u32 optee_supp_thrd_req(struct tee_context *ctx, u32 func, size_t num_params,
struct tee_param *param); struct tee_param *param);
int optee_supp_read(struct tee_context *ctx, void __user *buf, size_t len);
int optee_supp_write(struct tee_context *ctx, void __user *buf, size_t len);
void optee_supp_init(struct optee_supp *supp); void optee_supp_init(struct optee_supp *supp);
void optee_supp_uninit(struct optee_supp *supp); void optee_supp_uninit(struct optee_supp *supp);
void optee_supp_release(struct optee_supp *supp); void optee_supp_release(struct optee_supp *supp);
......
...@@ -47,8 +47,6 @@ struct tee_device { ...@@ -47,8 +47,6 @@ struct tee_device {
struct tee_shm_pool *pool; struct tee_shm_pool *pool;
}; };
int tee_shm_init(void);
int tee_shm_get_fd(struct tee_shm *shm); int tee_shm_get_fd(struct tee_shm *shm);
bool tee_device_get(struct tee_device *teedev); bool tee_device_get(struct tee_device *teedev);
......
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