qcacmn: Add src, and dst id support in PKTLOG(WMA)

In the scheduler_post_message, src_id is now added to
know the source module of the msg. the present scheduler
doesn't know about the same which is scheduler_post_msg

Replace the scheduler_post_msg with scheduler_post_message

Change-Id: I166f4c943b9a21749c53ed19101b0ed0defd8491
CRs-Fixed: 2306013
This commit is contained in:
gaurank kathpalia
2018-08-28 19:46:50 +05:30
committed by nshrivas
parent 5f5b7039bf
commit 85e55d12d6

View File

@@ -131,7 +131,9 @@ static A_STATUS pktlog_wma_post_msg(WMI_PKTLOG_EVENT event_types,
msg.bodyptr = param;
msg.bodyval = 0;
status = scheduler_post_msg(QDF_MODULE_ID_WMA, &msg);
status = scheduler_post_message(QDF_MODULE_ID_WMA,
QDF_MODULE_ID_WMA,
QDF_MODULE_ID_WMA, &msg);
if (status != QDF_STATUS_SUCCESS) {
qdf_mem_free(param);