Lines Matching defs:txmsg
320 struct hsi_msg *txmsg, *rxmsg;
332 txmsg = hsi_alloc_msg(1, GFP_KERNEL);
333 if (!txmsg) {
337 txmsg->channel = cs_char_data.channel_id_data;
338 txmsg->destructor = cs_hsi_data_destructor;
339 txmsg->context = hi;
342 hi->data_tx_msg = txmsg;
694 struct hsi_msg *txmsg;
718 txmsg = hi->data_tx_msg;
719 sg_init_one(txmsg->sgt.sgl, address, hi->buf_size);
720 txmsg->complete = cs_hsi_write_on_data_complete;
721 ret = hsi_async_write(hi->cl, txmsg);
723 cs_hsi_data_write_error(hi, txmsg);