Merge "[Add support for new requiest from DT]"
diff --git a/src/logan_wifi/wifi_hal.c b/src/logan_wifi/wifi_hal.c
index 9686691..f8297d0 100644
--- a/src/logan_wifi/wifi_hal.c
+++ b/src/logan_wifi/wifi_hal.c
@@ -22217,12 +22217,7 @@
     if (strstr(buf, "PBC Status: Active")) {
 		res = snprintf(output_string, 32, "%s", "Requested");
     } else if(strstr(buf, "PBC Status: Disabled")) {
-		if (strstr(buf, "Last WPS result: Success"))
-			res = snprintf(output_string, 32, "%s", "Success");
-		else if (strstr(buf, "Last WPS result: None"))
-			res = snprintf(output_string, 32, "%s", "Disabled");
-		else
-			res = snprintf(output_string, 32, "%s", "Failed");
+		res = snprintf(output_string, 32, "%s", "Success");
     } else
 		res = snprintf(output_string, 32, "%s", "Failed");