diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-05 06:39:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-07 15:53:52 -0400 |
commit | 2c20ae6862ba137bf79b918de6b739a60260e37c (patch) | |
tree | 4326cba0fa74122ee1279ca0948552eea148ff13 /drivers/net/irda/sh_sir.c | |
parent | bfdd56b27594160f93d09a79d822e17a904c6247 (diff) | |
download | blackbird-op-linux-2c20ae6862ba137bf79b918de6b739a60260e37c.tar.gz blackbird-op-linux-2c20ae6862ba137bf79b918de6b739a60260e37c.zip |
irda: 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>
Diffstat (limited to 'drivers/net/irda/sh_sir.c')
-rw-r--r-- | drivers/net/irda/sh_sir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/irda/sh_sir.c b/drivers/net/irda/sh_sir.c index 89682b49900f..8d9ae5a086d5 100644 --- a/drivers/net/irda/sh_sir.c +++ b/drivers/net/irda/sh_sir.c @@ -761,7 +761,7 @@ static int sh_sir_probe(struct platform_device *pdev) goto err_mem_4; platform_set_drvdata(pdev, ndev); - err = request_irq(irq, sh_sir_irq, IRQF_DISABLED, "sh_sir", self); + err = request_irq(irq, sh_sir_irq, 0, "sh_sir", self); if (err) { dev_warn(&pdev->dev, "Unable to attach sh_sir interrupt\n"); goto err_mem_4; |