qcacld-3.0: Remove obsolete CDS mq APIs reference from HDD

After control path scheduler componentization CDS message queue
APIs are no longer used hence replace CDS mq APIs in HDD by
scheduler mq APIs.

Change-Id: I378c3354a66552e9c796befcd39b461980b93b27
CRs-Fixed: 1110497
diff --git a/core/hdd/src/wlan_hdd_wext.c b/core/hdd/src/wlan_hdd_wext.c
index edcc3b3..cd8036c 100644
--- a/core/hdd/src/wlan_hdd_wext.c
+++ b/core/hdd/src/wlan_hdd_wext.c
@@ -39,6 +39,7 @@
 #include <mac_trace.h>
 #include <wlan_hdd_includes.h>
 #include <cds_api.h>
+#include "scheduler_api.h"
 #include <net/arp.h>
 #include <cdp_txrx_stats.h>
 #include "sir_params.h"
@@ -8659,7 +8660,7 @@
 	case WE_UNIT_TEST_CMD:
 	{
 		t_wma_unit_test_cmd *unitTestArgs;
-		cds_msg_t msg = { 0 };
+		struct scheduler_msg msg = { 0 };
 		int i, j;
 		if ((apps_args[0] < WLAN_MODULE_ID_MIN) ||
 		    (apps_args[0] >= WLAN_MODULE_ID_MAX)) {
@@ -8688,7 +8689,7 @@
 		msg.reserved = 0;
 		msg.bodyptr = unitTestArgs;
 		if (QDF_STATUS_SUCCESS !=
-		    cds_mq_post_message(QDF_MODULE_ID_WMA, &msg)) {
+		    scheduler_post_msg(QDF_MODULE_ID_WMA, &msg)) {
 			qdf_mem_free(unitTestArgs);
 			hdd_err("Not able to post UNIT_TEST_CMD message to WMA");
 			return -EINVAL;