Home
last modified time | relevance | path

Searched refs:txdone_method (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/drivers/mailbox/
Dmailbox.c90 if (!err && (chan->txdone_method & TXDONE_BY_POLL)) in msg_submit()
168 if (unlikely(!(chan->txdone_method & TXDONE_BY_IRQ))) { in mbox_chan_txdone()
189 if (unlikely(!(chan->txdone_method & TXDONE_BY_ACK))) { in mbox_client_txdone()
343 if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone) in mbox_request_channel()
344 chan->txdone_method |= TXDONE_BY_ACK; in mbox_request_channel()
378 if (chan->txdone_method == (TXDONE_BY_POLL | TXDONE_BY_ACK)) in mbox_free_channel()
379 chan->txdone_method = TXDONE_BY_POLL; in mbox_free_channel()
430 chan->txdone_method = txdone; in mbox_controller_register()
Dpcc.c137 if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone) in pcc_mbox_request_channel()
138 chan->txdone_method |= TXDONE_BY_ACK; in pcc_mbox_request_channel()
162 if (chan->txdone_method == (TXDONE_BY_POLL | TXDONE_BY_ACK)) in pcc_mbox_free_channel()
163 chan->txdone_method = TXDONE_BY_POLL; in pcc_mbox_free_channel()
/linux-4.1.27/include/linux/
Dmailbox_controller.h118 unsigned txdone_method; member