crypto: fix build in < 5.0 tree

Change-Id: Ie4ed3e91cfb7e509bac1d6db885bd3f415d2b168
This commit is contained in:
that
2014-12-10 17:22:09 +01:00
committed by Dees Troy
parent 201727911f
commit ceb7b8e576
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
LOCAL_PATH := $(call my-dir)
ifeq ($(TW_INCLUDE_L_CRYPTO), true)
ifeq ($(TW_INCLUDE_CRYPTO), true)
include $(CLEAR_VARS)
common_c_includes := \
+2
View File
@@ -131,6 +131,7 @@ static int keymaster_check_compatibility()
printf("keymaster version is %d\n", keymaster_dev->common.module->module_api_version);
#if (KEYMASTER_HEADER_VERSION >= 3)
if (keymaster_dev->common.module->module_api_version
< KEYMASTER_MODULE_API_VERSION_0_3) {
rc = 0;
@@ -141,6 +142,7 @@ static int keymaster_check_compatibility()
rc = 1;
}
#endif
out:
keymaster_close(keymaster_dev);
return rc;