wlan: svc: remove obsolete Factory Test Mode featurization

The current code supports having both Factory Test Mode and Mission
Mode available in one driver.  But this code has evolved over time
from a code base which initially only supported having separate
Factory Test Mode and Mission Mode drivers, with conditional
compilation used to create the two versions.  Since this conditional
compilation is no longer necessary, remove it.

CRs-fixed: 452041
Change-Id: I3e1febb63076be560d3a6d8074fd1889316ef5e3
diff --git a/CORE/SVC/inc/wlan_ptt_sock_svc.h b/CORE/SVC/inc/wlan_ptt_sock_svc.h
index 55f977b..7913621 100644
--- a/CORE/SVC/inc/wlan_ptt_sock_svc.h
+++ b/CORE/SVC/inc/wlan_ptt_sock_svc.h
@@ -71,9 +71,7 @@
 #define PTT_MSG_READ_MEMORY         0x3044
 #define PTT_MSG_WRITE_MEMORY        0x3045
 #define PTT_MSG_LOG_DUMP_DBG        0x32A1
-#ifdef ANI_MANF_DIAG
 #define PTT_MSG_FTM_CMDS_TYPE           0x4040
-#endif
 #define ANI_DRIVER_MSG_START         0x0001
 #define ANI_MSG_APP_REG_REQ         (ANI_DRIVER_MSG_START + 0)
 #define ANI_MSG_APP_REG_RSP         (ANI_DRIVER_MSG_START + 1)
diff --git a/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c b/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c
index ec2f863..7fa2185 100644
--- a/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c
+++ b/CORE/SVC/src/ptt/wlan_ptt_sock_svc.c
@@ -53,9 +53,7 @@
 #include <wlan_ptt_sock_svc.h>
 #include <vos_types.h>
 #include <vos_trace.h>
-#ifdef ANI_MANF_DIAG
 #include <wlan_hdd_ftm.h>
-#endif
 
 #define PTT_SOCK_DEBUG
 #ifdef PTT_SOCK_DEBUG
@@ -273,11 +271,9 @@
             //send message to the app
             ptt_sock_send_msg_to_app(wmsg, 0, ANI_NL_MSG_PUMAC, wnl->nlh.nlmsg_pid);
             break;
-#ifdef ANI_MANF_DIAG
          case PTT_MSG_FTM_CMDS_TYPE:
             wlan_hdd_process_ftm_cmd(pAdapterHandle,wnl);
             break;
-#endif
          default:
             PTT_TRACE(VOS_TRACE_LEVEL_ERROR, "%s: Unknown ANI Msg [0x%X], length [0x%X]\n",
                __func__, ani_msg_type, be16_to_cpu(wmsg->length ));