Searched refs:mssg (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/include/linux/ |
D | mailbox_client.h | 38 void (*rx_callback)(struct mbox_client *cl, void *mssg); 39 void (*tx_prepare)(struct mbox_client *cl, void *mssg); 40 void (*tx_done)(struct mbox_client *cl, void *mssg, int r); 44 int mbox_send_message(struct mbox_chan *chan, void *mssg);
|
/linux-4.1.27/drivers/mailbox/ |
D | mailbox.c | 31 static int add_to_rbuf(struct mbox_chan *chan, void *mssg) in add_to_rbuf() argument 45 chan->msg_data[idx] = mssg; in add_to_rbuf() 97 void *mssg; in tx_tick() local 100 mssg = chan->active_req; in tx_tick() 108 if (mssg && chan->cl->tx_done) in tx_tick() 109 chan->cl->tx_done(chan->cl, mssg, r); in tx_tick() 148 void mbox_chan_received_data(struct mbox_chan *chan, void *mssg) in mbox_chan_received_data() argument 152 chan->cl->rx_callback(chan->cl, mssg); in mbox_chan_received_data() 246 int mbox_send_message(struct mbox_chan *chan, void *mssg) in mbox_send_message() argument 253 t = add_to_rbuf(chan, mssg); in mbox_send_message()
|
/linux-4.1.27/Documentation/ |
D | mailbox.txt | 52 static void message_from_remote(struct mbox_client *cl, void *mssg) 57 if (is_an_ack(mssg)) { 61 queue_req(mssg); 69 static void sample_sent(struct mbox_client *cl, void *mssg, int r)
|