diff options
author | Neeraj Soni <neersoni@codeaurora.org> | 2019-07-09 05:46:15 (GMT) |
---|---|---|
committer | Neeraj Soni <neersoni@codeaurora.org> | 2019-07-09 05:47:29 (GMT) |
commit | 6b99d61baaee529c181a663a5f205b66c91141ff (patch) | |
tree | 4c31108f3ba311038b19b04893d972c610d07d8f /cryptfs_hw.h | |
parent | 0e83c6004312fab088a1b9364a8f342721d0fc15 (diff) | |
download | android_vendor_qcom_opensource_cryptfs_hw-6b99d61baaee529c181a663a5f205b66c91141ff.zip android_vendor_qcom_opensource_cryptfs_hw-6b99d61baaee529c181a663a5f205b66c91141ff.tar.gz android_vendor_qcom_opensource_cryptfs_hw-6b99d61baaee529c181a663a5f205b66c91141ff.tar.bz2 |
cryptfs_hw: implement new hal support for vold
BUG: b/121350843
vold communication with qseecom tee device should go
through hal interface instead of directly using kernel ioctls.
Change-Id: I43ea11b1b008e26ca3598697f50375136dd267f5
Signed-off-by: Neeraj Soni <neersoni@codeaurora.org>
Diffstat (limited to 'cryptfs_hw.h')
-rw-r--r-- | cryptfs_hw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptfs_hw.h b/cryptfs_hw.h index 65321eb..d7ed51e 100644 --- a/cryptfs_hw.h +++ b/cryptfs_hw.h @@ -43,7 +43,7 @@ int update_hw_device_encryption_key(const char*, const char*, const char*); int clear_hw_device_encryption_key(); unsigned int is_hw_disk_encryption(const char*); int is_ice_enabled(void); -int should_use_keymaster(); +inline int should_use_keymaster(){return 1;} int set_ice_param(int flag); #ifdef __cplusplus |