All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn()
@ 2020-06-11 17:53 ` Palmer Dabbelt
  0 siblings, 0 replies; 6+ messages in thread
From: Palmer Dabbelt @ 2020-06-11 17:53 UTC (permalink / raw)
  To: Anup Patel
  Cc: tglx, jason, Marc Zyngier, Paul Walmsley, Palmer Dabbelt, aou,
	linux-kernel, linux-riscv, kernel-team, Palmer Dabbelt

From: Palmer Dabbelt <palmerdabbelt@google.com>

Anup originally re-spun his patch set to include this fix, but it was a bit too
late for my PR so I've split it out.

Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
---
 drivers/irqchip/irq-riscv-intc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
index a6f97fa6ff69..8017f6d32d52 100644
--- a/drivers/irqchip/irq-riscv-intc.c
+++ b/drivers/irqchip/irq-riscv-intc.c
@@ -99,7 +99,7 @@ static int __init riscv_intc_init(struct device_node *node,
 
 	hartid = riscv_of_parent_hartid(node);
 	if (hartid < 0) {
-		pr_warn("unable to fine hart id for %pOF\n", node);
+		pr_warn("unable to find hart id for %pOF\n", node);
 		return 0;
 	}
 
-- 
2.27.0.290.gba653c62da-goog


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

* [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn()
@ 2020-06-11 17:53 ` Palmer Dabbelt
  0 siblings, 0 replies; 6+ messages in thread
From: Palmer Dabbelt @ 2020-06-11 17:53 UTC (permalink / raw)
  To: Anup Patel
  Cc: aou, jason, Marc Zyngier, Palmer Dabbelt, linux-kernel,
	Palmer Dabbelt, Paul Walmsley, tglx, kernel-team, linux-riscv

From: Palmer Dabbelt <palmerdabbelt@google.com>

Anup originally re-spun his patch set to include this fix, but it was a bit too
late for my PR so I've split it out.

Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
---
 drivers/irqchip/irq-riscv-intc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
index a6f97fa6ff69..8017f6d32d52 100644
--- a/drivers/irqchip/irq-riscv-intc.c
+++ b/drivers/irqchip/irq-riscv-intc.c
@@ -99,7 +99,7 @@ static int __init riscv_intc_init(struct device_node *node,
 
 	hartid = riscv_of_parent_hartid(node);
 	if (hartid < 0) {
-		pr_warn("unable to fine hart id for %pOF\n", node);
+		pr_warn("unable to find hart id for %pOF\n", node);
 		return 0;
 	}
 
-- 
2.27.0.290.gba653c62da-goog



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

* Re: [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn()
  2020-06-11 17:53 ` Palmer Dabbelt
@ 2020-06-12 14:06   ` Marc Zyngier
  -1 siblings, 0 replies; 6+ messages in thread
From: Marc Zyngier @ 2020-06-12 14:06 UTC (permalink / raw)
  To: Palmer Dabbelt
  Cc: Anup Patel, tglx, jason, Paul Walmsley, aou, linux-kernel,
	linux-riscv, kernel-team, Palmer Dabbelt

On 2020-06-11 18:53, Palmer Dabbelt wrote:
> From: Palmer Dabbelt <palmerdabbelt@google.com>
> 
> Anup originally re-spun his patch set to include this fix, but it was a 
> bit too
> late for my PR so I've split it out.
> 
> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
> ---
>  drivers/irqchip/irq-riscv-intc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-riscv-intc.c 
> b/drivers/irqchip/irq-riscv-intc.c
> index a6f97fa6ff69..8017f6d32d52 100644
> --- a/drivers/irqchip/irq-riscv-intc.c
> +++ b/drivers/irqchip/irq-riscv-intc.c
> @@ -99,7 +99,7 @@ static int __init riscv_intc_init(struct device_node 
> *node,
> 
>  	hartid = riscv_of_parent_hartid(node);
>  	if (hartid < 0) {
> -		pr_warn("unable to fine hart id for %pOF\n", node);
> +		pr_warn("unable to find hart id for %pOF\n", node);
>  		return 0;
>  	}

I'll pick it post -rc1, once I merge Linus' tree into mine.

Thanks,

         M.
-- 
Jazz is not dead. It just smells funny...

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

* Re: [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn()
@ 2020-06-12 14:06   ` Marc Zyngier
  0 siblings, 0 replies; 6+ messages in thread
From: Marc Zyngier @ 2020-06-12 14:06 UTC (permalink / raw)
  To: Palmer Dabbelt
  Cc: aou, jason, Anup Patel, linux-kernel, Paul Walmsley,
	Palmer Dabbelt, tglx, kernel-team, linux-riscv

On 2020-06-11 18:53, Palmer Dabbelt wrote:
> From: Palmer Dabbelt <palmerdabbelt@google.com>
> 
> Anup originally re-spun his patch set to include this fix, but it was a 
> bit too
> late for my PR so I've split it out.
> 
> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
> ---
>  drivers/irqchip/irq-riscv-intc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/irqchip/irq-riscv-intc.c 
> b/drivers/irqchip/irq-riscv-intc.c
> index a6f97fa6ff69..8017f6d32d52 100644
> --- a/drivers/irqchip/irq-riscv-intc.c
> +++ b/drivers/irqchip/irq-riscv-intc.c
> @@ -99,7 +99,7 @@ static int __init riscv_intc_init(struct device_node 
> *node,
> 
>  	hartid = riscv_of_parent_hartid(node);
>  	if (hartid < 0) {
> -		pr_warn("unable to fine hart id for %pOF\n", node);
> +		pr_warn("unable to find hart id for %pOF\n", node);
>  		return 0;
>  	}

I'll pick it post -rc1, once I merge Linus' tree into mine.

Thanks,

         M.
-- 
Jazz is not dead. It just smells funny...


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

* Re: [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn()
  2020-06-11 17:53 ` Palmer Dabbelt
  (?)
  (?)
@ 2020-06-21 14:20 ` Marc Zyngier
  -1 siblings, 0 replies; 6+ messages in thread
From: Marc Zyngier @ 2020-06-21 14:20 UTC (permalink / raw)
  To: Palmer Dabbelt, Anup Patel
  Cc: jason, tglx, Palmer Dabbelt, linux-riscv, kernel-team,
	linux-kernel, Paul Walmsley, aou

On Thu, 11 Jun 2020 10:53:02 -0700, Palmer Dabbelt wrote:
> Anup originally re-spun his patch set to include this fix, but it was a bit too
> late for my PR so I've split it out.

Applied to irq/irqchip-next, thanks!

[1/1] irqchip/riscv-intc: Fix a typo in a pr_warn()
      commit: 559fe74ba6b0c8283e923a64f19fc0398fb64d04

Cheers,

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

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

* [tip: irq/urgent] irqchip/riscv-intc: Fix a typo in a pr_warn()
  2020-06-11 17:53 ` Palmer Dabbelt
                   ` (2 preceding siblings ...)
  (?)
@ 2020-06-30 10:11 ` tip-bot2 for Palmer Dabbelt
  -1 siblings, 0 replies; 6+ messages in thread
From: tip-bot2 for Palmer Dabbelt @ 2020-06-30 10:11 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Palmer Dabbelt, Marc Zyngier, x86, LKML

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

Commit-ID:     559fe74ba6b0c8283e923a64f19fc0398fb64d04
Gitweb:        https://git.kernel.org/tip/559fe74ba6b0c8283e923a64f19fc0398fb64d04
Author:        Palmer Dabbelt <palmerdabbelt@google.com>
AuthorDate:    Thu, 11 Jun 2020 10:53:02 -07:00
Committer:     Marc Zyngier <maz@kernel.org>
CommitterDate: Sun, 21 Jun 2020 15:15:41 +01:00

irqchip/riscv-intc: Fix a typo in a pr_warn()

Anup originally re-spun his patch set to include this fix, but it was a bit too
late for my PR so I've split it out.

Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20200611175302.253540-1-palmer@dabbelt.com
---
 drivers/irqchip/irq-riscv-intc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c
index a6f97fa..8017f6d 100644
--- a/drivers/irqchip/irq-riscv-intc.c
+++ b/drivers/irqchip/irq-riscv-intc.c
@@ -99,7 +99,7 @@ static int __init riscv_intc_init(struct device_node *node,
 
 	hartid = riscv_of_parent_hartid(node);
 	if (hartid < 0) {
-		pr_warn("unable to fine hart id for %pOF\n", node);
+		pr_warn("unable to find hart id for %pOF\n", node);
 		return 0;
 	}
 

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

end of thread, other threads:[~2020-06-30 10:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-11 17:53 [PATCH] irqchip: riscv-intc: Fix a typo in a pr_warn() Palmer Dabbelt
2020-06-11 17:53 ` Palmer Dabbelt
2020-06-12 14:06 ` Marc Zyngier
2020-06-12 14:06   ` Marc Zyngier
2020-06-21 14:20 ` Marc Zyngier
2020-06-30 10:11 ` [tip: irq/urgent] irqchip/riscv-intc: " tip-bot2 for Palmer Dabbelt

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.