Commit 2d328195 authored by Tristan Gingold's avatar Tristan Gingold

Fix minor typo.

parent d59628cd
......@@ -1068,7 +1068,7 @@ static void trtl_message_push(struct trtl_hmq *hmq, struct trtl_msg *msg)
* Use this only from the output IRQ handler because it assumes that
* the output channel has a free slot (the reason for having the IRQ)
*/
static void trtl_mesage_push_from_buf(struct trtl_hmq *hmq)
static void trtl_message_push_from_buf(struct trtl_hmq *hmq)
{
unsigned long flags;
struct mturtle_hmq_buffer *buf = &hmq->buf_out;
......@@ -1138,7 +1138,7 @@ irqreturn_t trtl_irq_handler_out(int irq_core_base, void *arg)
"There must be a freeslot if we got an interrupt. Look for an HDL bug\nDisable HMQ output IRQ\n");
trtl_hmq_irq_disable(hmq, 1);
}
trtl_mesage_push_from_buf(hmq);
trtl_message_push_from_buf(hmq);
}
return IRQ_HANDLED;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment