Lines Matching refs:reply
71 struct sof_ipc_reply reply; in hda_dsp_ipc_get_reply() local
93 reply.error = 0; in hda_dsp_ipc_get_reply()
94 reply.hdr.cmd = SOF_IPC_GLB_REPLY; in hda_dsp_ipc_get_reply()
95 reply.hdr.size = sizeof(reply); in hda_dsp_ipc_get_reply()
96 memcpy(msg->reply_data, &reply, sizeof(reply)); in hda_dsp_ipc_get_reply()
101 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, in hda_dsp_ipc_get_reply()
102 sizeof(reply)); in hda_dsp_ipc_get_reply()
104 if (reply.error < 0) { in hda_dsp_ipc_get_reply()
105 memcpy(msg->reply_data, &reply, sizeof(reply)); in hda_dsp_ipc_get_reply()
106 ret = reply.error; in hda_dsp_ipc_get_reply()
109 if (reply.hdr.size != msg->reply_size && in hda_dsp_ipc_get_reply()
111 ((reply.hdr.cmd & SOF_GLB_TYPE_MASK) != SOF_IPC_GLB_PROBE)) { in hda_dsp_ipc_get_reply()
113 msg->reply_size, reply.hdr.size); in hda_dsp_ipc_get_reply()
282 const struct sof_ipc_pcm_params_reply *reply) in hda_ipc_pcm_params() argument
287 size_t posn_offset = reply->posn_offset; in hda_ipc_pcm_params()