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>
This commit is contained in:
parent
2c20ae6862
commit
0ca45208b0
|
@ -220,7 +220,7 @@ static struct z8530_dev *sv11_init(int iobase, int irq)
|
|||
/* We want a fast IRQ for this device. Actually we'd like an even faster
|
||||
IRQ ;) - This is one driver RtLinux is made for */
|
||||
|
||||
if (request_irq(irq, z8530_interrupt, IRQF_DISABLED,
|
||||
if (request_irq(irq, z8530_interrupt, 0,
|
||||
"Hostess SV11", sv) < 0) {
|
||||
pr_warn("IRQ %d already in use\n", irq);
|
||||
goto err_irq;
|
||||
|
|
|
@ -266,7 +266,7 @@ static __init struct slvl_board *slvl_init(int iobase, int irq,
|
|||
/* We want a fast IRQ for this device. Actually we'd like an even faster
|
||||
IRQ ;) - This is one driver RtLinux is made for */
|
||||
|
||||
if (request_irq(irq, z8530_interrupt, IRQF_DISABLED,
|
||||
if (request_irq(irq, z8530_interrupt, 0,
|
||||
"SeaLevel", dev) < 0) {
|
||||
pr_warn("IRQ %d already in use\n", irq);
|
||||
goto err_request_irq;
|
||||
|
|
Loading…
Reference in New Issue