Lines Matching refs:reply
308 /* reply message from DSP */
319 * handle immediate reply from DSP core. If the msg is
374 struct sof_ipc_reply reply;
378 * Sometimes, there is unexpected reply ipc arriving. The reply
387 /* get reply */
388 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, sizeof(reply));
390 if (reply.error < 0) {
391 memcpy(msg->reply_data, &reply, sizeof(reply));
392 ret = reply.error;
394 /* reply correct size ? */
395 if (reply.hdr.size != msg->reply_size) {
396 dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
397 msg->reply_size, reply.hdr.size);