Skip to content

Commit dfd997b

Browse files
lakshmicar2023-cryptoJassi Brar
authored andcommitted
mailbox: cix: fix typo in error message
Fix typo "overlow" -> "overflow" in FIFO overflow error message. Signed-off-by: Lakshmi S <lakshmicar.2023@gmail.com> Reviewed-by: Peter Chen <peter.chen@cixtech.com> Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
1 parent 673b570 commit dfd997b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/mailbox/cix-mailbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ static void cix_mbox_isr_fifo(struct mbox_chan *chan)
346346
/* FIFO overflow is generated */
347347
if (int_status & CIX_FIFO_OFLOW_INT) {
348348
status = cix_mbox_read(priv, CIX_FIFO_STAS);
349-
dev_err(priv->dev, "fifo overlow: int_stats %d\n", status);
349+
dev_err(priv->dev, "fifo overflow: int_stats %d\n", status);
350350
cix_mbox_write(priv, CIX_FIFO_OFLOW_INT, CIX_INT_CLEAR);
351351
}
352352
}

0 commit comments

Comments
 (0)