wlan: hdd: 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.

Change-Id: I7c48f3ae56313138dd63f2c3402dffddff99c6be
CRs-fixed: 452041
diff --git a/CORE/HDD/src/wlan_hdd_ftm.c b/CORE/HDD/src/wlan_hdd_ftm.c
index 104062d..49be302 100644
--- a/CORE/HDD/src/wlan_hdd_ftm.c
+++ b/CORE/HDD/src/wlan_hdd_ftm.c
@@ -94,7 +94,6 @@
 #include "pttMsgApi.h"
 #include "wlan_qct_pal_device.h"
 
-#ifdef ANI_MANF_DIAG
 #define RXMODE_DISABLE_ALL 0
 #define RXMODE_ENABLE_ALL  1
 #define RXMODE_ENABLE_11GN 2
@@ -4157,11 +4156,10 @@
 
     return 0;
 }
-#endif//ANI_MANF_DIAG
 
 VOS_STATUS wlan_write_to_efs (v_U8_t *pData, v_U16_t data_len)
 {
-#if defined(ANI_MANF_DIAG) && defined(MSM_PLATFORM)
+#if defined(MSM_PLATFORM)
     tAniHdr *wmsg = NULL;
     v_U8_t *pBuf;
     hdd_context_t *pHddCtx = NULL;
@@ -4216,7 +4214,6 @@
     return VOS_STATUS_SUCCESS;
 }
 
-#ifdef ANI_MANF_DIAG
 /*  action sub-ioctls */
 static int iw_ftm_setnone_getnone(struct net_device *dev, struct iw_request_info *info,
                        union iwreq_data *wrqu, char *extra)
@@ -4478,11 +4475,9 @@
     return 0;
 }
 
-#endif //ANI_MANF_DIAG
 
 VOS_STATUS WLANFTM_McProcessMsg (v_VOID_t *message)
 {
-#ifdef ANI_MANF_DIAG
     ftm_rsp_msg_t   *pFtmMsgRsp;
 
     VOS_STATUS vos_status = VOS_STATUS_SUCCESS;
@@ -4535,7 +4530,6 @@
     }
     }
     EXIT();
-#endif
     return VOS_STATUS_SUCCESS;
 
 }