Commit d0c62d51 authored by Bart Van Assche's avatar Bart Van Assche Committed by Thomas Gleixner
Browse files

sh: intc: Switch to irq_get_nr_irqs()



Use the irq_get_nr_irqs() function instead of the global variable
'nr_irqs'. Prepare for changing 'nr_irqs' from an exported global
variable into a variable with file scope.

Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20241015190953.1266194-19-bvanassche@acm.org
parent 18444d33
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

static int intc_irq_xlate_show(struct seq_file *m, void *priv)
{
	const unsigned int nr_irqs = irq_get_nr_irqs();
	int i;

	seq_printf(m, "%-5s  %-7s  %-15s\n", "irq", "enum", "chip name");