From: Palmer Dabbelt Date: Thu, 11 Jun 2020 17:53:02 +0000 (-0700) Subject: irqchip/riscv-intc: Fix a typo in a pr_warn() X-Git-Tag: v5.8-rc4~3^2^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=559fe74ba6b0c8283e923a64f19fc0398fb64d04;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/20200611175302.253540-1-palmer@dabbelt.com --- diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c index a6f97fa6ff69d..8017f6d32d52b 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; }