[DPP] Remove incorrect failure notifications

Remove incorrect failure notifications from wpa_supplicant to the
framework. While testing all scenarios, discovered that this event is
not fatal and DPP state machine continues to work past the identified
points.

Bug: 123092212
Test: act.py -c ../WifiDppConfig.json -tc WifiDppTest
Change-Id: Ie4ce109147aa8a2197a22d0ce4d8e69a78d4b3b2
diff --git a/wpa_supplicant/dpp_supplicant.c b/wpa_supplicant/dpp_supplicant.c
index 152e257..22ba902 100644
--- a/wpa_supplicant/dpp_supplicant.c
+++ b/wpa_supplicant/dpp_supplicant.c
@@ -1142,7 +1142,6 @@
 					  peer_bi, own_bi, freq, hdr, buf, len);
 	if (!wpa_s->dpp_auth) {
 		wpa_printf(MSG_DEBUG, "DPP: No response generated");
-		wpas_notify_dpp_auth_failure(wpa_s);
 		return;
 	}
 	wpas_dpp_set_testing_options(wpa_s, wpa_s->dpp_auth);
@@ -1531,7 +1530,6 @@
 			return;
 		}
 		wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
-		wpas_notify_dpp_auth_failure(wpa_s);
 		return;
 	}
 	os_memcpy(auth->peer_mac_addr, src, ETH_ALEN);