Home
last modified time | relevance | path

Searched refs:ipa_msg (Results 1 – 2 of 2) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
H A Di_qdf_ipa.h493 #define QDF_IPA_WLAN_MSG_WDS_UPDATE(ipa_msg) \ argument
494 (((struct ipa_wlan_msg *)(ipa_msg))->ast_update)
497 #define QDF_IPA_WLAN_MSG_NAME(ipa_msg) \ argument
498 (((struct ipa_wlan_msg *)(ipa_msg))->name)
499 #define QDF_IPA_WLAN_MSG_MAC_ADDR(ipa_msg) \ argument
500 (((struct ipa_wlan_msg *)(ipa_msg))->mac_addr)
503 #define QDF_IPA_WLAN_MSG_NETDEV_IF_ID(ipa_msg) \ argument
504 (((struct ipa_wlan_msg *)(ipa_msg))->if_index)
515 #define QDF_IPA_WLAN_MSG_NETDEV_IF_ID(ipa_msg) \ argument
516 (((struct ipa_wlan_msg_if_index *)(ipa_msg))->if_index)
[all …]
/wlan-driver/qca-wifi-host-cmn/ipa/core/src/
H A Dwlan_ipa_core.c4098 qdf_ipa_wlan_msg_t *ipa_msg; in wlan_ipa_uc_send_wdi_control_msg() local
4102 QDF_IPA_MSG_META_MSG_LEN(&meta) = sizeof(*ipa_msg); in wlan_ipa_uc_send_wdi_control_msg()
4103 ipa_msg = qdf_mem_malloc(QDF_IPA_MSG_META_MSG_LEN(&meta)); in wlan_ipa_uc_send_wdi_control_msg()
4104 if (!ipa_msg) in wlan_ipa_uc_send_wdi_control_msg()
4116 ret = qdf_ipa_send_msg(&meta, ipa_msg, wlan_ipa_msg_free_fn); in wlan_ipa_uc_send_wdi_control_msg()
4120 qdf_mem_free(ipa_msg); in wlan_ipa_uc_send_wdi_control_msg()