Lines Matching defs:reply
37 struct sof_ipc_reply reply;
45 /* get reply */
46 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, sizeof(reply));
48 if (reply.error < 0) {
49 memcpy(msg->reply_data, &reply, sizeof(reply));
50 ret = reply.error;
52 /* reply has correct size? */
53 if (reply.hdr.size != msg->reply_size) {
54 dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
55 msg->reply_size, reply.hdr.size);
244 const struct sof_ipc_pcm_params_reply *reply)