qcacld-3.0: Replace scheduler post msg with scheduler post messsage

Currently many modules use the scheduler_post_msg API which
doesn't allow the driver to know about the src, and destination
modules.

Fix is to call scheduler_post_message which has src, dest, and
the que id.

Change-Id: Ia5c43fe3ceeb7db9dde6241cbabac0ce48f88061
このコミットが含まれているのは:
gaurank kathpalia
2019-01-23 11:20:50 +05:30
committed by nshrivas
コミット 2b2f1b1432
5個のファイルの変更17行の追加9行の削除

ファイルの表示

@@ -2439,7 +2439,8 @@ p2p_set_mac_filter(struct wlan_objmgr_psoc *soc, uint32_t vdev_id,
msg.type = P2P_SET_RANDOM_MAC;
msg.bodyptr = set_filter_req;
msg.callback = p2p_process_cmd;
status = scheduler_post_msg(QDF_MODULE_ID_OS_IF, &msg);
status = scheduler_post_message(QDF_MODULE_ID_P2P, QDF_MODULE_ID_P2P,
QDF_MODULE_ID_OS_IF, &msg);
if (status != QDF_STATUS_SUCCESS)
qdf_mem_free(set_filter_req);