summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorZach Johnson <zachoverflow@google.com>2014-10-20 11:43:02 -0700
committerAndre Eisenbach <eisenbach@google.com>2015-03-16 16:51:36 -0700
commit86a56d303fdbed734549b181622ed74140113d2d (patch)
tree10dfa6d98bf7331307cb21ea233944046f83558f /main
parentc8235d00e545208e92de1e0a85f2e4763e495cdf (diff)
downloadandroid_system_bt-86a56d303fdbed734549b181622ed74140113d2d.tar.gz
android_system_bt-86a56d303fdbed734549b181622ed74140113d2d.tar.bz2
android_system_bt-86a56d303fdbed734549b181622ed74140113d2d.zip
Remove always false TCS_INCLUDED macro & friends
Referenced non existent headers, so would not compile if set to true.
Diffstat (limited to 'main')
-rw-r--r--main/bte_init.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/main/bte_init.c b/main/bte_init.c
index 0fb0c7389..ab58b2c7a 100644
--- a/main/bte_init.c
+++ b/main/bte_init.c
@@ -35,10 +35,6 @@
#include "port_api.h"
#endif
-#if (defined(TCS_INCLUDED) && TCS_INCLUDED == TRUE)
-#include "tcs_api.h"
-#endif
-
#if (defined(OBX_INCLUDED) && OBX_INCLUDED == TRUE)
#include "obx_api.h"
#endif
@@ -51,14 +47,6 @@
#include "gap_api.h"
#endif
-#if ((defined(CTP_INCLUDED) && CTP_INCLUDED == TRUE))
-#include "ctp_api.h"
-#endif
-
-#if ((defined(ICP_INCLUDED) && ICP_INCLUDED == TRUE))
-#include "icp_api.h"
-#endif
-
#if (defined(SPP_INCLUDED) && SPP_INCLUDED == TRUE)
#include "spp_api.h"
#endif
@@ -332,23 +320,6 @@ void BTE_InitStack(void)
#endif /* RFCOMM Included */
-/*************************
-** TCS and its profiles **
-**************************/
-#if (defined(TCS_INCLUDED) && TCS_INCLUDED == TRUE)
- TCS_Init();
-
-#if (defined(CTP_INCLUDED) && CTP_INCLUDED == TRUE)
- CTP_Init();
-#endif /* CTP_INCLUDED */
-
-#if (defined(ICP_INCLUDED) && ICP_INCLUDED == TRUE)
- ICP_Init();
-#endif /* ICP_INCLUDED */
-
-#endif /* TCS_INCLUDED */
-
-
/**************************
** BNEP and its profiles **
***************************/