From 289359c09d2c3f0c9f8f938dc7152bb0dff7db3b Mon Sep 17 00:00:00 2001 From: roniwae <79932235+roniwae@users.noreply.github.com> Date: Tue, 12 Dec 2023 18:24:05 +0700 Subject: [PATCH] fix error build Changes to be committed: modified: drivers/extcon/extcon.c modified: drivers/mailbox/mailbox.c --- drivers/mailbox/mailbox.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c index 8d1d3b3870a9..e3b114c2846a 100644 --- a/drivers/mailbox/mailbox.c +++ b/drivers/mailbox/mailbox.c @@ -84,7 +84,6 @@ static int __msg_submit(struct mbox_chan *chan) } exit: spin_unlock_irqrestore(&chan->lock, flags); - (mailbox: forward the hrtimer if not queued and under a lock) if (!err && (chan->txdone_method & TXDONE_BY_POLL)) { /* kick start the timer immediately to avoid delays */ spin_lock_irqsave(&chan->mbox->poll_hrt_lock, flags); @@ -104,7 +103,7 @@ static void tx_tick(struct mbox_chan *chan, int r) spin_unlock_irqrestore(&chan->lock, flags); /* Submit next message */ - msg_submit(chan); + __msg_submit(chan); if (!mssg) return;