wlan: Increase time out period to complete wdaCompleteEvent

wdaCompleteEvent time out occurs if ftm service starts
before boot up process completes.
To mitigate this issue increase wdaCompleteEvent time out
period from 1 sec to 30 sec.

Change-Id: I8a0da478bc537786b3d125d4bcec1bed0c37d651
CRs-Fixed: 734421
diff --git a/CORE/HDD/src/wlan_hdd_ftm.c b/CORE/HDD/src/wlan_hdd_ftm.c
index 867b1fe..198c3fd 100644
--- a/CORE/HDD/src/wlan_hdd_ftm.c
+++ b/CORE/HDD/src/wlan_hdd_ftm.c
@@ -1779,7 +1779,7 @@
        return VOS_STATUS_E_FAILURE;
     }
 
-    vStatus = vos_wait_single_event(&(pVosContext->wdaCompleteEvent), 1000);
+    vStatus = vos_wait_single_event(&(pVosContext->wdaCompleteEvent), 1000 * 30);
 
     if ( vStatus != VOS_STATUS_SUCCESS )
     {