public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside"
@ 2026-02-03 21:07 Colin Ian King
  2026-02-04  9:53 ` Jonathan Cameron
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Colin Ian King @ 2026-02-03 21:07 UTC (permalink / raw)
  To: Marc Zyngier, Lorenzo Pieralisi, Thomas Gleixner,
	linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a pr_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/irqchip/irq-gic-v5-its.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-gic-v5-its.c b/drivers/irqchip/irq-gic-v5-its.c
index e24ce3d9fb62..8c4cf8430871 100644
--- a/drivers/irqchip/irq-gic-v5-its.c
+++ b/drivers/irqchip/irq-gic-v5-its.c
@@ -902,7 +902,7 @@ static int gicv5_its_alloc_eventid(struct gicv5_its_dev *its_dev, msi_alloc_info
 		event_id_base = info->hwirq;
 
 		if (event_id_base >= its_dev->num_events) {
-			pr_err("EventID ouside of ITT range; cannot allocate an ITT entry!\n");
+			pr_err("EventID outside of ITT range; cannot allocate an ITT entry!\n");
 
 			return -EINVAL;
 		}
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside"
  2026-02-03 21:07 [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside" Colin Ian King
@ 2026-02-04  9:53 ` Jonathan Cameron
  2026-02-04 13:05 ` Lorenzo Pieralisi
  2026-02-04 15:15 ` [tip: irq/drivers] " tip-bot2 for Colin Ian King
  2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2026-02-04  9:53 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Marc Zyngier, Lorenzo Pieralisi, Thomas Gleixner,
	linux-arm-kernel, kernel-janitors, linux-kernel

On Tue,  3 Feb 2026 21:07:35 +0000
Colin Ian King <colin.i.king@gmail.com> wrote:

> There is a spelling mistake in a pr_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
FWIW - obviously correct.

Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>

> ---
>  drivers/irqchip/irq-gic-v5-its.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-gic-v5-its.c b/drivers/irqchip/irq-gic-v5-its.c
> index e24ce3d9fb62..8c4cf8430871 100644
> --- a/drivers/irqchip/irq-gic-v5-its.c
> +++ b/drivers/irqchip/irq-gic-v5-its.c
> @@ -902,7 +902,7 @@ static int gicv5_its_alloc_eventid(struct gicv5_its_dev *its_dev, msi_alloc_info
>  		event_id_base = info->hwirq;
>  
>  		if (event_id_base >= its_dev->num_events) {
> -			pr_err("EventID ouside of ITT range; cannot allocate an ITT entry!\n");
> +			pr_err("EventID outside of ITT range; cannot allocate an ITT entry!\n");
>  
>  			return -EINVAL;
>  		}


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside"
  2026-02-03 21:07 [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside" Colin Ian King
  2026-02-04  9:53 ` Jonathan Cameron
@ 2026-02-04 13:05 ` Lorenzo Pieralisi
  2026-02-04 15:15 ` [tip: irq/drivers] " tip-bot2 for Colin Ian King
  2 siblings, 0 replies; 4+ messages in thread
From: Lorenzo Pieralisi @ 2026-02-04 13:05 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Marc Zyngier, Thomas Gleixner, linux-arm-kernel, kernel-janitors,
	linux-kernel

On Tue, Feb 03, 2026 at 09:07:35PM +0000, Colin Ian King wrote:
> There is a spelling mistake in a pr_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/irqchip/irq-gic-v5-its.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Lorenzo Pieralisi <lpieralisi@kernel.org>

> diff --git a/drivers/irqchip/irq-gic-v5-its.c b/drivers/irqchip/irq-gic-v5-its.c
> index e24ce3d9fb62..8c4cf8430871 100644
> --- a/drivers/irqchip/irq-gic-v5-its.c
> +++ b/drivers/irqchip/irq-gic-v5-its.c
> @@ -902,7 +902,7 @@ static int gicv5_its_alloc_eventid(struct gicv5_its_dev *its_dev, msi_alloc_info
>  		event_id_base = info->hwirq;
>  
>  		if (event_id_base >= its_dev->num_events) {
> -			pr_err("EventID ouside of ITT range; cannot allocate an ITT entry!\n");
> +			pr_err("EventID outside of ITT range; cannot allocate an ITT entry!\n");
>  
>  			return -EINVAL;
>  		}
> -- 
> 2.51.0
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tip: irq/drivers] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside"
  2026-02-03 21:07 [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside" Colin Ian King
  2026-02-04  9:53 ` Jonathan Cameron
  2026-02-04 13:05 ` Lorenzo Pieralisi
@ 2026-02-04 15:15 ` tip-bot2 for Colin Ian King
  2 siblings, 0 replies; 4+ messages in thread
From: tip-bot2 for Colin Ian King @ 2026-02-04 15:15 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Colin Ian King, Thomas Gleixner, Jonathan Cameron,
	Lorenzo Pieralisi, x86, linux-kernel

The following commit has been merged into the irq/drivers branch of tip:

Commit-ID:     6054b10c328813e88bca31ac0d02eaff06057db0
Gitweb:        https://git.kernel.org/tip/6054b10c328813e88bca31ac0d02eaff06057db0
Author:        Colin Ian King <colin.i.king@gmail.com>
AuthorDate:    Tue, 03 Feb 2026 21:07:35 
Committer:     Thomas Gleixner <tglx@kernel.org>
CommitterDate: Wed, 04 Feb 2026 16:12:49 +01:00

irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside"

There is a spelling mistake in a pr_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>
Acked-by: Lorenzo Pieralisi <lpieralisi@kernel.org>
Link: https://patch.msgid.link/20260203210735.5036-1-colin.i.king@gmail.com
---
 drivers/irqchip/irq-gic-v5-its.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-gic-v5-its.c b/drivers/irqchip/irq-gic-v5-its.c
index 554485f..f410e17 100644
--- a/drivers/irqchip/irq-gic-v5-its.c
+++ b/drivers/irqchip/irq-gic-v5-its.c
@@ -900,7 +900,7 @@ static int gicv5_its_alloc_eventid(struct gicv5_its_dev *its_dev, msi_alloc_info
 		event_id_base = info->hwirq;
 
 		if (event_id_base >= its_dev->num_events) {
-			pr_err("EventID ouside of ITT range; cannot allocate an ITT entry!\n");
+			pr_err("EventID outside of ITT range; cannot allocate an ITT entry!\n");
 
 			return -EINVAL;
 		}

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-04 15:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03 21:07 [PATCH] irqchip/gic-v5: Fix spelling mistake "ouside" -> "outside" Colin Ian King
2026-02-04  9:53 ` Jonathan Cameron
2026-02-04 13:05 ` Lorenzo Pieralisi
2026-02-04 15:15 ` [tip: irq/drivers] " tip-bot2 for Colin Ian King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox