diff options
author | Michael Opdenacker <[email protected]> | 2013-10-13 03:11:12 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2013-10-17 06:09:14 -0300 |
commit | b9e9f02a26909fdf9b81d41aeaa435b9ea926d6a (patch) | |
tree | 9da7cbb00e1d25baaa652cac7bf703e300cf7081 | |
parent | a232728d1ef26c8d16a81d4a7e52513d26bd01d2 (diff) |
[media] winbond-cir: 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 <[email protected]>
Acked-by: David Härdeman <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/rc/winbond-cir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/winbond-cir.c b/drivers/media/rc/winbond-cir.c index 98bd4960c75e..904baf4eec28 100644 --- a/drivers/media/rc/winbond-cir.c +++ b/drivers/media/rc/winbond-cir.c @@ -1110,7 +1110,7 @@ wbcir_probe(struct pnp_dev *device, const struct pnp_device_id *dev_id) } err = request_irq(data->irq, wbcir_irq_handler, - IRQF_DISABLED, DRVNAME, device); + 0, DRVNAME, device); if (err) { dev_err(dev, "Failed to claim IRQ %u\n", data->irq); err = -EBUSY; |