From 341d5d9e59f0cfbf32275db7b7b55a655c4c56d2 Mon Sep 17 00:00:00 2001 From: Pierre-Hugues Husson Date: Tue, 7 Aug 2018 13:09:49 +0200 Subject: [PATCH] P WIP --- bluetooth/bdroid_buildcfg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bluetooth/bdroid_buildcfg.h b/bluetooth/bdroid_buildcfg.h index da21831..166bd4a 100644 --- a/bluetooth/bdroid_buildcfg.h +++ b/bluetooth/bdroid_buildcfg.h @@ -40,12 +40,12 @@ static inline const char* BtmDefLocalName() return "hello"; } -static inline bool BtmBypassExtraAclSetup() { +static inline int BtmBypassExtraAclSetup() { #if 0 int8_t prop = property_get_bool("persist.sys.bt_acl_bypass", false); return prop == true; #endif - return false; + return 1; } #define BTM_DEF_LOCAL_NAME BtmDefLocalName()