diff options
author | Srinu Jella <sjella@codeaurora.org> | 2015-08-25 18:42:32 +0530 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:22:00 -0600 |
commit | 1520fe1b6d6951a9cf1196057019d4b7ba21be36 (patch) | |
tree | d19c71d877c8af081d7de1901428f24222baaa82 | |
parent | f757f7ef716b3eb9464ab718fdcb3b8bbda874df (diff) | |
download | android_system_bt-1520fe1b6d6951a9cf1196057019d4b7ba21be36.tar.gz android_system_bt-1520fe1b6d6951a9cf1196057019d4b7ba21be36.tar.bz2 android_system_bt-1520fe1b6d6951a9cf1196057019d4b7ba21be36.zip |
Bluetooth: Increase the security slots for other new profiles
- Increased the security slots to 75 to accomadate new profiles
introduced.
- With out this, some profile coonnection may fail in multi
profile scenario due to non availability of security id.
Change-Id: Ic7c0268aea654cba2dee0c323ca0342e71ebc577
CRs-Fixed: 896212
-rw-r--r-- | stack/include/btm_api.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stack/include/btm_api.h b/stack/include/btm_api.h index 96a665e66..e9d1933d2 100644 --- a/stack/include/btm_api.h +++ b/stack/include/btm_api.h @@ -1240,7 +1240,8 @@ typedef UINT8 tBTM_LINK_KEY_TYPE; #define BTM_SEC_SERVICE_FIRST_EMPTY 54 #ifndef BTM_SEC_MAX_SERVICES -#define BTM_SEC_MAX_SERVICES 65 +/* accomadate other new profiles also */ +#define BTM_SEC_MAX_SERVICES 75 #endif /************************************************************************************************ |