diff options
| author | Lakshmi S <lakshmicar.2023@gmail.com> | 2025-12-23 17:36:22 +0530 |
|---|---|---|
| committer | Jassi Brar <jassisinghbrar@gmail.com> | 2026-01-24 18:42:39 -0600 |
| commit | dfd997b1e24cef79528856205df96dc6dfd3d753 (patch) | |
| tree | f478849696fc41543031664e1f2719b822e0067c /drivers | |
| parent | 673b570825ace0dcb2ac0c676080559d505c6f40 (diff) | |
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>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mailbox/cix-mailbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/cix-mailbox.c b/drivers/mailbox/cix-mailbox.c index 5bb1416c26a5..443620e8ae37 100644 --- a/drivers/mailbox/cix-mailbox.c +++ b/drivers/mailbox/cix-mailbox.c @@ -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); } } |
