Home
last modified time | relevance | path

Searched refs:resp_msg (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/drivers/net/wireless/ath/ath10k/
Dhtc.c671 struct ath10k_htc_conn_svc_response *resp_msg = &resp_msg_dummy; in ath10k_htc_connect_service() local
742 resp_msg = &msg->connect_service_response; in ath10k_htc_connect_service()
744 service_id = __le16_to_cpu(resp_msg->service_id); in ath10k_htc_connect_service()
756 resp_msg->status, resp_msg->eid); in ath10k_htc_connect_service()
758 conn_resp->connect_resp_code = resp_msg->status; in ath10k_htc_connect_service()
761 if (resp_msg->status != ATH10K_HTC_CONN_SVC_STATUS_SUCCESS) { in ath10k_htc_connect_service()
764 resp_msg->status); in ath10k_htc_connect_service()
768 assigned_eid = (enum ath10k_htc_ep_id)resp_msg->eid; in ath10k_htc_connect_service()
769 max_msg_size = __le16_to_cpu(resp_msg->max_msg_size); in ath10k_htc_connect_service()
787 conn_resp->max_msg_len = __le16_to_cpu(resp_msg->max_msg_size); in ath10k_htc_connect_service()
[all …]
/Linux-v5.4/drivers/i2c/busses/
Di2c-xgene-slimpro.c111 u32 *resp_msg; member
149 if (ctx->resp_msg) in slimpro_i2c_rx_cb()
150 *ctx->resp_msg = ((u32 *)mssg)[1]; in slimpro_i2c_rx_cb()
171 if (ctx->resp_msg) in slimpro_i2c_pcc_rx_cb()
172 *ctx->resp_msg = ((u32 *)msg)[1]; in slimpro_i2c_pcc_rx_cb()
209 if (*ctx->resp_msg == 0xffffffff) in start_i2c_msg_xfer()
221 ctx->resp_msg = data; in slimpro_i2c_send_msg()
238 ctx->resp_msg = NULL; in slimpro_i2c_send_msg()
/Linux-v5.4/drivers/net/ethernet/hisilicon/hns3/hns3vf/
Dhclgevf_main.c232 u8 resp_msg; in hclgevf_get_tc_info() local
236 true, &resp_msg, sizeof(resp_msg)); in hclgevf_get_tc_info()
244 hdev->hw_tc_map = resp_msg; in hclgevf_get_tc_info()
252 u8 resp_msg; in hclgevf_get_port_base_vlan_filter_state() local
257 NULL, 0, true, &resp_msg, sizeof(u8)); in hclgevf_get_port_base_vlan_filter_state()
265 nic->port_base_vlan_state = resp_msg; in hclgevf_get_port_base_vlan_filter_state()
273 u8 resp_msg[HCLGEVF_TQPS_RSS_INFO_LEN]; in hclgevf_get_queue_info() local
277 true, resp_msg, in hclgevf_get_queue_info()
286 memcpy(&hdev->num_tqps, &resp_msg[0], sizeof(u16)); in hclgevf_get_queue_info()
287 memcpy(&hdev->rss_size_max, &resp_msg[2], sizeof(u16)); in hclgevf_get_queue_info()
[all …]
/Linux-v5.4/drivers/net/wireless/ath/ath6kl/
Dhtc_pipe.c1224 struct htc_conn_service_resp *resp_msg; in ath6kl_htc_pipe_conn_service() local
1309 resp_msg = (struct htc_conn_service_resp *) in ath6kl_htc_pipe_conn_service()
1312 if (resp_msg->msg_id != cpu_to_le16(HTC_MSG_CONN_SVC_RESP_ID) || in ath6kl_htc_pipe_conn_service()
1313 (target->pipe.ctrl_response_len < sizeof(*resp_msg))) { in ath6kl_htc_pipe_conn_service()
1322 __func__, resp_msg->svc_id, resp_msg->status, in ath6kl_htc_pipe_conn_service()
1323 resp_msg->eid); in ath6kl_htc_pipe_conn_service()
1325 conn_resp->resp_code = resp_msg->status; in ath6kl_htc_pipe_conn_service()
1327 if (resp_msg->status != HTC_SERVICE_SUCCESS) { in ath6kl_htc_pipe_conn_service()
1330 resp_msg->svc_id, resp_msg->status); in ath6kl_htc_pipe_conn_service()
1335 assigned_epid = (enum htc_endpoint_id) resp_msg->eid; in ath6kl_htc_pipe_conn_service()
[all …]
Dhtc_mbox.c2430 struct htc_conn_service_resp *resp_msg; in ath6kl_htc_mbox_conn_service() local
2479 resp_msg = (struct htc_conn_service_resp *)rx_pkt->buf; in ath6kl_htc_mbox_conn_service()
2480 msg_id = le16_to_cpu(resp_msg->msg_id); in ath6kl_htc_mbox_conn_service()
2483 (rx_pkt->act_len < sizeof(*resp_msg))) { in ath6kl_htc_mbox_conn_service()
2488 conn_resp->resp_code = resp_msg->status; in ath6kl_htc_mbox_conn_service()
2490 if (resp_msg->status != HTC_SERVICE_SUCCESS) { in ath6kl_htc_mbox_conn_service()
2492 resp_msg->svc_id, resp_msg->status); in ath6kl_htc_mbox_conn_service()
2497 assigned_ep = (enum htc_endpoint_id)resp_msg->eid; in ath6kl_htc_mbox_conn_service()
2498 max_msg_sz = le16_to_cpu(resp_msg->max_msg_sz); in ath6kl_htc_mbox_conn_service()
/Linux-v5.4/drivers/crypto/qat/qat_common/
Dadf_transport.h54 typedef void (*adf_callback_fn)(void *resp_msg);