[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <160622893109.11115.12932515800816767356.tip-bot2@tip-bot2>
Date: Tue, 24 Nov 2020 14:42:11 -0000
From: "tip-bot2 for Geert Uytterhoeven" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Geert Uytterhoeven <geert+renesas@...der.be>,
Thomas Gleixner <tglx@...utronix.de>, x86@...nel.org,
linux-kernel@...r.kernel.org, maz@...nel.org
Subject: [tip: irq/core] sh/irq: Add missing closing parentheses in
arch_show_interrupts()
The following commit has been merged into the irq/core branch of tip:
Commit-ID: 15b8d9372f27c47e17c91f6f16d359314cf11404
Gitweb: https://git.kernel.org/tip/15b8d9372f27c47e17c91f6f16d359314cf11404
Author: Geert Uytterhoeven <geert+renesas@...der.be>
AuthorDate: Tue, 24 Nov 2020 14:06:56 +01:00
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitterDate: Tue, 24 Nov 2020 15:37:16 +01:00
sh/irq: Add missing closing parentheses in arch_show_interrupts()
arch/sh/kernel/irq.c: In function ‘arch_show_interrupts’:
arch/sh/kernel/irq.c:47:58: error: expected ‘)’ before ‘;’ token
47 | seq_printf(p, "%10u ", per_cpu(irq_stat.__nmi_count, j);
| ^
Fixes: fe3f1d5d7cd3062c ("sh: Get rid of nmi_count()")
Signed-off-by: Geert Uytterhoeven <geert+renesas@...der.be>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Link: https://lore.kernel.org/r/20201124130656.2741743-1-geert+renesas@glider.be
---
arch/sh/kernel/irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/sh/kernel/irq.c b/arch/sh/kernel/irq.c
index 5addcb2..ab5f790 100644
--- a/arch/sh/kernel/irq.c
+++ b/arch/sh/kernel/irq.c
@@ -44,7 +44,7 @@ int arch_show_interrupts(struct seq_file *p, int prec)
seq_printf(p, "%*s: ", prec, "NMI");
for_each_online_cpu(j)
- seq_printf(p, "%10u ", per_cpu(irq_stat.__nmi_count, j);
+ seq_printf(p, "%10u ", per_cpu(irq_stat.__nmi_count, j));
seq_printf(p, " Non-maskable interrupts\n");
seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
Powered by blists - more mailing lists