mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
genirq: Unexport nr_irqs
Unexport nr_irqs and declare it static now that all code that reads or modifies nr_irqs has been converted to number_of_interrupts() / set_number_of_interrupts(). Change the type of 'nr_irqs' from 'int' into 'unsigned int' to match the return type and argument type of the irq_get_nr_iqs() / irq_set_nr_irqs() functions. 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-23-bvanassche@acm.org
This commit is contained in:
parent
1ad2048bf7
commit
ef4c675dc2
@ -5,7 +5,6 @@
|
||||
#include <uapi/linux/irqnr.h>
|
||||
|
||||
|
||||
extern int nr_irqs;
|
||||
unsigned int irq_get_nr_irqs(void) __pure;
|
||||
unsigned int irq_set_nr_irqs(unsigned int nr);
|
||||
extern struct irq_desc *irq_to_desc(unsigned int irq);
|
||||
|
@ -138,8 +138,7 @@ static void desc_set_defaults(unsigned int irq, struct irq_desc *desc, int node,
|
||||
desc_smp_init(desc, node, affinity);
|
||||
}
|
||||
|
||||
int nr_irqs = NR_IRQS;
|
||||
EXPORT_SYMBOL_GPL(nr_irqs);
|
||||
static unsigned int nr_irqs = NR_IRQS;
|
||||
|
||||
/**
|
||||
* irq_get_nr_irqs() - Number of interrupts supported by the system.
|
||||
|
Loading…
Reference in New Issue
Block a user