summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/bt_target.h20
-rw-r--r--main/bte_init.c7
2 files changed, 0 insertions, 27 deletions
diff --git a/include/bt_target.h b/include/bt_target.h
index de3fd84eb..436fa5862 100644
--- a/include/bt_target.h
+++ b/include/bt_target.h
@@ -2832,26 +2832,6 @@ Range: Minimum 12000 (12 secs) on BR/EDR when supporting PBF.
/******************************************************************************
**
-** FTP
-**
-******************************************************************************/
-
-#ifndef FTP_INCLUDED
-#define FTP_INCLUDED FALSE
-#endif
-
-/* This is set to enable FTP client capabilities. */
-#ifndef FTP_CLIENT_INCLUDED
-#define FTP_CLIENT_INCLUDED TRUE
-#endif
-
-/* This is set to enable FTP server capabilities. */
-#ifndef FTP_SERVER_INCLUDED
-#define FTP_SERVER_INCLUDED TRUE
-#endif
-
-/******************************************************************************
-**
** XML Parser
**
******************************************************************************/
diff --git a/main/bte_init.c b/main/bte_init.c
index 3e3c1adad..16df2d2ad 100644
--- a/main/bte_init.c
+++ b/main/bte_init.c
@@ -71,10 +71,6 @@
#include "goep_util.h"
#endif /* GOEP included */
-#if (defined(FTP_INCLUDED) && FTP_INCLUDED == TRUE)
-#include "ftp_api.h"
-#endif /* FTP */
-
#if (defined(OPP_INCLUDED) && OPP_INCLUDED == TRUE)
#include "opp_api.h"
#endif /* OPP */
@@ -337,9 +333,6 @@ BT_API void BTE_InitStack(void)
#endif /* GOEP */
-#if (defined(FTP_INCLUDED) && FTP_INCLUDED == TRUE)
- FTP_Init();
-#endif
#if (defined(OPP_INCLUDED) && OPP_INCLUDED == TRUE)
OPP_Init();
#endif