Lines Matching refs:msg
191 void (*complete)(struct hsi_msg *msg);
192 void (*destructor)(struct hsi_msg *msg);
202 void hsi_free_msg(struct hsi_msg *msg);
229 int (*async)(struct hsi_msg *msg);
319 int hsi_async(struct hsi_client *cl, struct hsi_msg *msg);
384 static inline int hsi_async_read(struct hsi_client *cl, struct hsi_msg *msg) in hsi_async_read() argument
386 msg->ttype = HSI_MSG_READ; in hsi_async_read()
387 return hsi_async(cl, msg); in hsi_async_read()
397 static inline int hsi_async_write(struct hsi_client *cl, struct hsi_msg *msg) in hsi_async_write() argument
399 msg->ttype = HSI_MSG_WRITE; in hsi_async_write()
400 return hsi_async(cl, msg); in hsi_async_write()