Merge "wpa_supplicant: Fix compilation without BOARD_WPA_SUPPLICANT_DRIVER" into jb-dev
diff --git a/wpa_supplicant/p2p_supplicant.c b/wpa_supplicant/p2p_supplicant.c
index 68b3c9b..5f1329e 100644
--- a/wpa_supplicant/p2p_supplicant.c
+++ b/wpa_supplicant/p2p_supplicant.c
@@ -4424,7 +4424,13 @@
 				 wpa_s->parent, NULL) > 0) {
 		wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
 			   "P2P group network getting removed");
+#ifdef ANDROID_P2P
+		/* Give time for any Pending WPS Frame exchange */
+		eloop_register_timeout(5, 0, wpas_p2p_group_formation_timeout,
+			wpa_s->parent, NULL);
+#else
 		wpas_p2p_group_formation_timeout(wpa_s->parent, NULL);
+#endif
 	}
 }