[PATCH] mailbox: cix: fix typo in error message

Lakshmi S posted 1 patch 1 month, 2 weeks ago
drivers/mailbox/cix-mailbox.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] mailbox: cix: fix typo in error message
Posted by Lakshmi S 1 month, 2 weeks ago
Fix typo "overlow" -> "overflow" in FIFO overflow error message.

Signed-off-by: Lakshmi S <lakshmicar.2023@gmail.com>
---
 drivers/mailbox/cix-mailbox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 		}
 	}
-- 
2.25.1
Re: [PATCH] mailbox: cix: fix typo in error message
Posted by Jassi Brar 2 weeks, 5 days ago
On Tue, Dec 23, 2025 at 6:06 AM Lakshmi S <lakshmicar.2023@gmail.com> wrote:
>
> Fix typo "overlow" -> "overflow" in FIFO overflow error message.
>
> Signed-off-by: Lakshmi S <lakshmicar.2023@gmail.com>
> ---
>  drivers/mailbox/cix-mailbox.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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);
>                 }
>         }
> --
> 2.25.1
>
Applied to mailbox/for-next.
Thanks.
Re: [PATCH] mailbox: cix: fix typo in error message
Posted by Peter Chen 1 month, 1 week ago
On 25-12-23 17:36:22, Lakshmi S wrote:
> 
> Fix typo "overlow" -> "overflow" in FIFO overflow error message.
> 
> Signed-off-by: Lakshmi S <lakshmicar.2023@gmail.com>
> ---
>  drivers/mailbox/cix-mailbox.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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);

Reviewed-by: Peter Chen <peter.chen@cixtech.com>

-- 

Best regards,
Peter