sta_set_wireless for 60G WPS

The sta_set_wireless command is only used for 60G WPS tests.

Signed-off-by: Alexei Avshalom Lazar <ailizaro@codeaurora.org>
diff --git a/sta.c b/sta.c
index 34104e5..62e1f52 100644
--- a/sta.c
+++ b/sta.c
@@ -7957,6 +7957,9 @@
 			return sta_set_wireless_60g(dut, conn, cmd);
 		if (strcasecmp(val, "OCE") == 0)
 			return sta_set_wireless_oce(dut, conn, cmd);
+		/* sta_set_wireless in WPS program is only used for 60G */
+		if (is_60g_sigma_dut(dut))
+			return sta_set_wireless_60g(dut, conn, cmd);
 		send_resp(dut, conn, SIGMA_ERROR,
 			  "ErrorCode,Program value not supported");
 	} else {