aboutsummaryrefslogtreecommitdiff
path: root/core/tee/tee_pobj.c
diff options
context:
space:
mode:
authorJens Wiklander <jens.wiklander@linaro.org>2014-10-09 08:34:55 +0200
committerJens Wiklander <jens.wiklander@linaro.org>2014-10-20 11:18:18 +0200
commitc507e4c2fc852359dfb639d4718039afce263201 (patch)
tree2aa4ab0155153aea784aee98e03eb927f579ab0e /core/tee/tee_pobj.c
parentd9d2e32736281a273e4a148a88bc8b4e328667f5 (diff)
Remove unused function tee_pobj_init
Reviewed-by: Pascal Brand <pascal.brand@linaro.org>
Diffstat (limited to 'core/tee/tee_pobj.c')
-rw-r--r--core/tee/tee_pobj.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/core/tee/tee_pobj.c b/core/tee/tee_pobj.c
index 24054efe..132633ec 100644
--- a/core/tee/tee_pobj.c
+++ b/core/tee/tee_pobj.c
@@ -32,7 +32,7 @@
#include <stdlib.h>
static TAILQ_HEAD(tee_pobjs, tee_pobj) tee_pobjs =
-TAILQ_HEAD_INITIALIZER(tee_pobjs);
+ TAILQ_HEAD_INITIALIZER(tee_pobjs);
static TEE_Result tee_pobj_check_access(uint32_t oflags, uint32_t nflags)
{
@@ -150,8 +150,3 @@ exit:
free(new_obj_id);
return res;
}
-
-void tee_pobj_init(void)
-{
- TAILQ_INIT(&tee_pobjs);
-}