wlan: P2P connection failed with ctsVerifier.

CtsVerifier sends wait time as 5000msec while driver
has max wait time as 1000 msec. Kernel checks if supplicant
wait time exceeds driver max. wait time and return failure.
As a result action frame failed to send on the air.
As a part of fix increased max. driver wait time to 5000 msec.

Change-Id: Ic47f4cc2eb9eda5bfe47463455c21db35b40bcf4
CRs-Fixed: 690357
diff --git a/CORE/HDD/src/wlan_hdd_cfg80211.c b/CORE/HDD/src/wlan_hdd_cfg80211.c
index fe5b2de..a5fa9e3 100644
--- a/CORE/HDD/src/wlan_hdd_cfg80211.c
+++ b/CORE/HDD/src/wlan_hdd_cfg80211.c
@@ -4290,7 +4290,7 @@
     wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
 
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
-    wiphy->max_remain_on_channel_duration = 1000;
+    wiphy->max_remain_on_channel_duration = 5000;
 #endif
 
     wiphy->n_vendor_commands = ARRAY_SIZE(hdd_wiphy_vendor_commands);