Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: wan: remove deprecated IRQF_DISABLED

This patch proposes to remove the use of the IRQF_DISABLED flag

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Michael Opdenacker and committed by
David S. Miller
0ca45208 2c20ae68

+2 -2
+1 -1
drivers/net/wan/hostess_sv11.c
··· 220 220 /* We want a fast IRQ for this device. Actually we'd like an even faster 221 221 IRQ ;) - This is one driver RtLinux is made for */ 222 222 223 - if (request_irq(irq, z8530_interrupt, IRQF_DISABLED, 223 + if (request_irq(irq, z8530_interrupt, 0, 224 224 "Hostess SV11", sv) < 0) { 225 225 pr_warn("IRQ %d already in use\n", irq); 226 226 goto err_irq;
+1 -1
drivers/net/wan/sealevel.c
··· 266 266 /* We want a fast IRQ for this device. Actually we'd like an even faster 267 267 IRQ ;) - This is one driver RtLinux is made for */ 268 268 269 - if (request_irq(irq, z8530_interrupt, IRQF_DISABLED, 269 + if (request_irq(irq, z8530_interrupt, 0, 270 270 "SeaLevel", dev) < 0) { 271 271 pr_warn("IRQ %d already in use\n", irq); 272 272 goto err_request_irq;