[PATCH][next] mailbox: cix: Fix spelling mistake "overlow" -> "overflow"

Colin Ian King posted 1 patch 2 months, 2 weeks ago
drivers/mailbox/cix-mailbox.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] mailbox: cix: Fix spelling mistake "overlow" -> "overflow"
Posted by Colin Ian King 2 months, 2 weeks ago
There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@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.50.0
Re: [PATCH][next] mailbox: cix: Fix spelling mistake "overlow" -> "overflow"
Posted by Hans Zhang 2 months, 2 weeks ago

On 2025/7/22 18:02, Colin Ian King wrote:
> [Some people who received this message don't often get email from colin.i.king@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
> 
> EXTERNAL EMAIL
> 
> There is a spelling mistake in a dev_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@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.50.0
> 

Reviewed-by: Hans Zhang <hans.zhang@cixtech.com>

Best regards,
Hans