diff options
author | 2024-10-15 12:09:40 -0700 | |
---|---|---|
committer | 2024-10-16 21:56:57 +0200 | |
commit | bc6e6f07ebeda52e9cd515a11f62c6a6abb6f50a (patch) | |
tree | f60fe5f11c7ceb9aaef0c84a590b88837d0b9ed2 | |
parent | net: 3com: 3c59x: Switch to irq_get_nr_irqs() (diff) | |
download | wireguard-linux-bc6e6f07ebeda52e9cd515a11f62c6a6abb6f50a.tar.xz wireguard-linux-bc6e6f07ebeda52e9cd515a11f62c6a6abb6f50a.zip |
net: hamradio: baycom_ser_fdx: 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-10-bvanassche@acm.org
-rw-r--r-- | drivers/net/hamradio/baycom_ser_fdx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/hamradio/baycom_ser_fdx.c b/drivers/net/hamradio/baycom_ser_fdx.c index 646f605e358f..799f8ece7824 100644 --- a/drivers/net/hamradio/baycom_ser_fdx.c +++ b/drivers/net/hamradio/baycom_ser_fdx.c @@ -373,6 +373,7 @@ static enum uart ser12_check_uart(unsigned int iobase) static int ser12_open(struct net_device *dev) { + const unsigned int nr_irqs = irq_get_nr_irqs(); struct baycom_state *bc = netdev_priv(dev); enum uart u; |