summaryrefslogtreecommitdiffstats
path: root/drivers/media/rc
diff options
context:
space:
mode:
authorMichael Opdenacker2013-10-13 08:11:12 +0200
committerMauro Carvalho Chehab2013-10-17 11:09:14 +0200
commitb9e9f02a26909fdf9b81d41aeaa435b9ea926d6a (patch)
tree9da7cbb00e1d25baaa652cac7bf703e300cf7081 /drivers/media/rc
parent[media] ir-rx51: remove deprecated IRQF_DISABLED (diff)
downloadkernel-qcow2-linux-b9e9f02a26909fdf9b81d41aeaa435b9ea926d6a.tar.gz
kernel-qcow2-linux-b9e9f02a26909fdf9b81d41aeaa435b9ea926d6a.tar.xz
kernel-qcow2-linux-b9e9f02a26909fdf9b81d41aeaa435b9ea926d6a.zip
[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 <michael.opdenacker@free-electrons.com> Acked-by: David Härdeman <david@hardeman.nu> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r--drivers/media/rc/winbond-cir.c2
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;