Lines Matching defs:rx_msg
897 struct mei_ext_hdr_gsc_f2h rx_msg;
965 ret = __mei_cl_recv(cl, (u8 *)&rx_msg, sizeof(rx_msg), NULL, MEI_CL_IO_SGL, 0);
967 if (ret != sizeof(rx_msg)) {
969 ret, sizeof(rx_msg));
975 /* check rx_msg.client_id and rx_msg.fence_id match the ones we send */
976 if (rx_msg.client_id != client_id || rx_msg.fence_id != fence_id) {
978 rx_msg.client_id, rx_msg.fence_id, client_id, fence_id);
983 dev_dbg(bus->dev, "gsc command: successfully written %u bytes\n", rx_msg.written);
984 ret = rx_msg.written;