mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-03-03 18:28:01 +01:00
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>
This commit is contained in:
@@ -346,7 +346,7 @@ static void cix_mbox_isr_fifo(struct mbox_chan *chan)
|
||||
/* FIFO overflow is generated */
|
||||
if (int_status & CIX_FIFO_OFLOW_INT) {
|
||||
status = cix_mbox_read(priv, CIX_FIFO_STAS);
|
||||
dev_err(priv->dev, "fifo overlow: int_stats %d\n", status);
|
||||
dev_err(priv->dev, "fifo overflow: int_stats %d\n", status);
|
||||
cix_mbox_write(priv, CIX_FIFO_OFLOW_INT, CIX_INT_CLEAR);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user