All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip/mips-gic: Fix comment typo
@ 2022-08-02 20:01 Jason Wang
  2022-08-27 13:20 ` Serge Semin
  2022-09-07 14:55 ` Serge Semin
  0 siblings, 2 replies; 5+ messages in thread
From: Jason Wang @ 2022-08-02 20:01 UTC (permalink / raw)
  To: maz; +Cc: tsbogend, fancer.lancer, tglx, linux-mips, linux-kernel, Jason Wang

The double `the' is duplicated in the comment, remove one.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
---
 drivers/irqchip/irq-mips-gic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
index 1ba0f1555c80..1a6a7a672ad7 100644
--- a/drivers/irqchip/irq-mips-gic.c
+++ b/drivers/irqchip/irq-mips-gic.c
@@ -494,7 +494,7 @@ static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
 	map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
 
 	/*
-	 * If adding support for more per-cpu interrupts, keep the the
+	 * If adding support for more per-cpu interrupts, keep the
 	 * array in gic_all_vpes_irq_cpu_online() in sync.
 	 */
 	switch (intr) {
-- 
2.35.1


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

* Re: [PATCH] irqchip/mips-gic: Fix comment typo
  2022-08-02 20:01 [PATCH] irqchip/mips-gic: Fix comment typo Jason Wang
@ 2022-08-27 13:20 ` Serge Semin
  2022-09-07 14:55 ` Serge Semin
  1 sibling, 0 replies; 5+ messages in thread
From: Serge Semin @ 2022-08-27 13:20 UTC (permalink / raw)
  To: Jason Wang; +Cc: maz, tsbogend, tglx, linux-mips, linux-kernel

On Wed, Aug 03, 2022 at 04:01:06AM +0800, Jason Wang wrote:
> The double `the' is duplicated in the comment, remove one.
> 
> Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
> ---
>  drivers/irqchip/irq-mips-gic.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
> index 1ba0f1555c80..1a6a7a672ad7 100644
> --- a/drivers/irqchip/irq-mips-gic.c
> +++ b/drivers/irqchip/irq-mips-gic.c
> @@ -494,7 +494,7 @@ static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
>  	map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
>  
>  	/*

> -	 * If adding support for more per-cpu interrupts, keep the the
> +	 * If adding support for more per-cpu interrupts, keep the

Thanks!

Acked-by: Serge Semin <fancer.lancer@gmail.com>

-Sergey

>  	 * array in gic_all_vpes_irq_cpu_online() in sync.
>  	 */
>  	switch (intr) {
> -- 
> 2.35.1
> 

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

* Re: [PATCH] irqchip/mips-gic: Fix comment typo
  2022-08-02 20:01 [PATCH] irqchip/mips-gic: Fix comment typo Jason Wang
  2022-08-27 13:20 ` Serge Semin
@ 2022-09-07 14:55 ` Serge Semin
  1 sibling, 0 replies; 5+ messages in thread
From: Serge Semin @ 2022-09-07 14:55 UTC (permalink / raw)
  To: Jason Wang; +Cc: maz, tsbogend, tglx, linux-mips, linux-kernel

On Wed, Aug 03, 2022 at 04:01:06AM +0800, Jason Wang wrote:
> The double `the' is duplicated in the comment, remove one.

Thanks.
Acked-by: Serge Semin <fancer.lancer@gmail.com>

-Sergey

> 
> Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
> ---
>  drivers/irqchip/irq-mips-gic.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
> index 1ba0f1555c80..1a6a7a672ad7 100644
> --- a/drivers/irqchip/irq-mips-gic.c
> +++ b/drivers/irqchip/irq-mips-gic.c
> @@ -494,7 +494,7 @@ static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
>  	map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
>  
>  	/*
> -	 * If adding support for more per-cpu interrupts, keep the the
> +	 * If adding support for more per-cpu interrupts, keep the
>  	 * array in gic_all_vpes_irq_cpu_online() in sync.
>  	 */
>  	switch (intr) {
> -- 
> 2.35.1
> 

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

* Re: [PATCH] irqchip/mips-gic: Fix comment typo
  2022-07-16  4:16 Jason Wang
@ 2022-07-19 12:53 ` Marc Zyngier
  0 siblings, 0 replies; 5+ messages in thread
From: Marc Zyngier @ 2022-07-19 12:53 UTC (permalink / raw)
  To: Jason Wang; +Cc: tsbogend, fancer.lancer, tglx, linux-mips, linux-kernel

On Sat, 16 Jul 2022 05:16:19 +0100,
Jason Wang <wangborong@cdjrlc.com> wrote:
> 
> The double `the' is duplicated in the comment, remove one.
> 
> Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
> ---
>  drivers/irqchip/irq-mips-gic.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
> index 8a9efb6ae587..9464af4b53e7 100644
> --- a/drivers/irqchip/irq-mips-gic.c
> +++ b/drivers/irqchip/irq-mips-gic.c
> @@ -494,7 +494,7 @@ static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
>  	map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
>  
>  	/*
> -	 * If adding support for more per-cpu interrupts, keep the the
> +	 * If adding support for more per-cpu interrupts, keep the
>  	 * array in gic_all_vpes_irq_cpu_online() in sync.
>  	 */
>  	switch (intr) {

Please send those as a series, not as one patch every other day.

	M.

-- 
Without deviation from the norm, progress is not possible.

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

* [PATCH] irqchip/mips-gic: Fix comment typo
@ 2022-07-16  4:16 Jason Wang
  2022-07-19 12:53 ` Marc Zyngier
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Wang @ 2022-07-16  4:16 UTC (permalink / raw)
  To: maz; +Cc: tsbogend, fancer.lancer, tglx, linux-mips, linux-kernel, Jason Wang

The double `the' is duplicated in the comment, remove one.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
---
 drivers/irqchip/irq-mips-gic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c
index 8a9efb6ae587..9464af4b53e7 100644
--- a/drivers/irqchip/irq-mips-gic.c
+++ b/drivers/irqchip/irq-mips-gic.c
@@ -494,7 +494,7 @@ static int gic_irq_domain_map(struct irq_domain *d, unsigned int virq,
 	map = GIC_MAP_PIN_MAP_TO_PIN | gic_cpu_pin;
 
 	/*
-	 * If adding support for more per-cpu interrupts, keep the the
+	 * If adding support for more per-cpu interrupts, keep the
 	 * array in gic_all_vpes_irq_cpu_online() in sync.
 	 */
 	switch (intr) {
-- 
2.35.1


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

end of thread, other threads:[~2022-09-07 14:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02 20:01 [PATCH] irqchip/mips-gic: Fix comment typo Jason Wang
2022-08-27 13:20 ` Serge Semin
2022-09-07 14:55 ` Serge Semin
  -- strict thread matches above, loose matches on Subject: below --
2022-07-16  4:16 Jason Wang
2022-07-19 12:53 ` Marc Zyngier

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.