diff options
author | Bart Van Assche <bvanassche@acm.org> | 2024-10-15 21:09:49 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2024-10-16 21:56:58 +0200 |
commit | d0c62d51ede0718203502c192665e1d379fbf207 (patch) | |
tree | b711e3b15ec9fb67d16c5626cc384c6dcc4c7b84 /drivers/sh | |
parent | serial: ucc_uart: Switch to irq_get_nr_irqs() (diff) | |
download | linux-d0c62d51ede0718203502c192665e1d379fbf207.tar.xz linux-d0c62d51ede0718203502c192665e1d379fbf207.zip |
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: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20241015190953.1266194-19-bvanassche@acm.org
Diffstat (limited to 'drivers/sh')
-rw-r--r-- | drivers/sh/intc/virq-debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/sh/intc/virq-debugfs.c b/drivers/sh/intc/virq-debugfs.c index 939915a07d99..5dd8febe6da5 100644 --- a/drivers/sh/intc/virq-debugfs.c +++ b/drivers/sh/intc/virq-debugfs.c @@ -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"); |