Lines Matching defs:reply
171 /* reply message from DSP, Mask Done interrupt first */
200 /* reply message from DSP */
206 * handle immediate reply from DSP core. If the msg is
254 struct sof_ipc_reply reply;
258 * Sometimes, there is unexpected reply ipc arriving. The reply
267 /* get reply */
268 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, sizeof(reply));
270 if (reply.error < 0) {
271 memcpy(msg->reply_data, &reply, sizeof(reply));
272 ret = reply.error;
274 /* reply correct size ? */
275 if (reply.hdr.size != msg->reply_size) {
276 dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
277 msg->reply_size, reply.hdr.size);