Android: Revert 100 ms wait before starting persistent group
Change-Id: I5b1a4cd862662cc161347542b5186c71fb1dfc79
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
diff --git a/wpa_supplicant/p2p_supplicant.c b/wpa_supplicant/p2p_supplicant.c
index 3ac6713..c36b65f 100644
--- a/wpa_supplicant/p2p_supplicant.c
+++ b/wpa_supplicant/p2p_supplicant.c
@@ -3163,15 +3163,9 @@
* the persistent group so that we will remain on the current channel to
* acknowledge any possible retransmission from the peer.
*/
-#ifndef ANDROID_P2P
wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
"starting persistent group");
os_sleep(0, 50000);
-#else
- wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 100 ms wait on current channel before "
- "starting persistent group");
- os_sleep(0, 100000);
-#endif
freq = wpa_s->p2p_persistent_go_freq;
if (neg_freq > 0 && ssid->mode == WPAS_MODE_P2P_GO &&