[PATCH] irqchip/gic-v3: Fix typo in eoimode1 comment

Xiaonan Chen posted 1 patch 1 week, 2 days ago
drivers/irqchip/irq-gic-v3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] irqchip/gic-v3: Fix typo in eoimode1 comment
Posted by Xiaonan Chen 1 week, 2 days ago
Drop the duplicated word in the gic_eoimode1_eoi_irq() comment.

Signed-off-by: Xiaonan Chen <chenxiaonan101@qq.com>
---
 drivers/irqchip/irq-gic-v3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
index 6e1fa5b247fc..69ca208eeee6 100644
--- a/drivers/irqchip/irq-gic-v3.c
+++ b/drivers/irqchip/irq-gic-v3.c
@@ -687,7 +687,7 @@ static void gic_eoimode1_eoi_irq(struct irq_data *d)
 {
 	/*
 	 * No need to deactivate an LPI, or an interrupt that
-	 * is is getting forwarded to a vcpu.
+	 * is getting forwarded to a vcpu.
 	 */
 	if (irqd_to_hwirq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d))
 		return;
-- 
2.34.1
Re: [PATCH] irqchip/gic-v3: Fix typo in eoimode1 comment
Posted by Radu Rendec 1 week, 1 day ago
On Tue, 2026-09-15 at 17:02 +0800, Xiaonan Chen wrote:
> Drop the duplicated word in the gic_eoimode1_eoi_irq() comment.
> 
> Signed-off-by: Xiaonan Chen <chenxiaonan101@qq.com>
> ---
>  drivers/irqchip/irq-gic-v3.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
> index 6e1fa5b247fc..69ca208eeee6 100644
> --- a/drivers/irqchip/irq-gic-v3.c
> +++ b/drivers/irqchip/irq-gic-v3.c
> @@ -687,7 +687,7 @@ static void gic_eoimode1_eoi_irq(struct irq_data *d)
>  {
>  	/*
>  	 * No need to deactivate an LPI, or an interrupt that
> -	 * is is getting forwarded to a vcpu.
> +	 * is getting forwarded to a vcpu.
>  	 */
>  	if (irqd_to_hwirq(d) >= 8192 || irqd_is_forwarded_to_vcpu(d))
>  		return;

Reviewed-by: Radu Rendec <radu@rendec.net>