wlan: Failed to Send Action frame.

When GO exist and  invites peer on the same
operating channel where GO is formed,i.e
when GO is on channel, if supplicant sends,
a non zero wait time , driver is not able to
send action frame. As a part of fix , setting
wait time as zero when GO is operating on channel
explicitly in driver.

Change-Id: I652060c53fb4b731b381ebb28996124bc39b4480
CRs-Fixed: 668530
diff --git a/CORE/HDD/src/wlan_hdd_p2p.c b/CORE/HDD/src/wlan_hdd_p2p.c
index 134857b..1a9be20 100644
--- a/CORE/HDD/src/wlan_hdd_p2p.c
+++ b/CORE/HDD/src/wlan_hdd_p2p.c
@@ -1008,6 +1008,10 @@
     if( goAdapter && ( ieee80211_frequency_to_channel(chan->center_freq)
                          == goAdapter->sessionCtx.ap.operatingChannel ) )
     {
+        /*  if GO exist and is not off channel
+         *  wait time should be zero.
+         */
+        wait = 0;
         goto send_frame;
     }
 #endif