Преглед на файлове

qcacld-3.0: Remove obsolete CDS mq APIs reference from utils module

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

Change-Id: I3f02eda08586fb6a41616de076d1acfee4a1cf68
CRs-Fixed: 1114374
Rajeev Kumar преди 8 години
родител
ревизия
15cf7ab108
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      core/utils/pktlog/pktlog_ac.c

+ 3 - 3
core/utils/pktlog/pktlog_ac.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -77,7 +77,7 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types,
 				    WMI_CMD_ID cmd_id, bool ini_triggered,
 				    uint8_t user_triggered)
 {
-	cds_msg_t msg = { 0 };
+	struct scheduler_msg msg = { 0 };
 	QDF_STATUS status;
 	struct ath_pktlog_wmi_params *param;
 
@@ -95,7 +95,7 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types,
 	msg.bodyptr = param;
 	msg.bodyval = 0;
 
-	status = cds_mq_post_message(QDF_MODULE_ID_WMA, &msg);
+	status = scheduler_post_msg(QDF_MODULE_ID_WMA, &msg);
 
 	if (status != QDF_STATUS_SUCCESS) {
 		qdf_mem_free(param);