wlan : FTM mode memory leak

During MAC close operation , for FTM setting
Memory is not freed which is allocated during
MAC open. As a part of fix, when mode is FTM
no memory is allocated during MAC open.

Change-Id: Ic9c578eefc3280ceece94b50eb01c74db205cfe4
CRs-Fixed: 680623
diff --git a/CORE/MAC/src/pe/lim/limApi.c b/CORE/MAC/src/pe/lim/limApi.c
index ca7ca1d..df47b38 100644
--- a/CORE/MAC/src/pe/lim/limApi.c
+++ b/CORE/MAC/src/pe/lim/limApi.c
@@ -986,6 +986,8 @@
 
 tSirRetStatus peOpen(tpAniSirGlobal pMac, tMacOpenParameters *pMacOpenParam)
 {
+    if (eDRIVER_TYPE_MFG == pMacOpenParam->driverType)
+        return eSIR_SUCCESS;
     pMac->lim.maxBssId = pMacOpenParam->maxBssId;
     pMac->lim.maxStation = pMacOpenParam->maxStation;