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