Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: fix calls to tee_pobj_get() for object opening
Fixes calls to tee_pobj_get() that use boolean false are argument where a enum tee_pobj_usage argument is expected. Function tee_pobj_get() used to take a boolean @temporary argument between old 2.4.0 and 3.11.0 release tags. Since commit [1] merged in release tag 3.11.0, function prototype changed but the commit missed few calls that since still use value false (0), treated as enumerated value TEE_POBJ_USAGE_OPEN. This change replaces these occurrences with use of TEE_POBJ_USAGE_OPEN argument. Link: 6885abf ("core: tee_pobj_get() takes an enum tee_pobj_usage") [1] Signed-off-by: Etienne Carriere <etienne.carriere@foss.st.com>
- Loading branch information