aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mailbox
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mailbox')
-rw-r--r--drivers/mailbox/mailbox.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c
index c281e5562876..58789b027708 100644
--- a/drivers/mailbox/mailbox.c
+++ b/drivers/mailbox/mailbox.c
@@ -78,6 +78,8 @@ static void msg_submit(struct mbox_chan *chan)
78 78
79 data = chan->msg_data[idx]; 79 data = chan->msg_data[idx];
80 80
81 if (chan->cl->tx_prepare)
82 chan->cl->tx_prepare(chan->cl, data);
81 /* Try to submit a message to the MBOX controller */ 83 /* Try to submit a message to the MBOX controller */
82 err = chan->mbox->ops->send_data(chan, data); 84 err = chan->mbox->ops->send_data(chan, data);
83 if (!err) { 85 if (!err) {