diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-13 02:49:29 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-10-17 06:08:31 -0300 |
commit | 3e018fe4409eae6fb36b882cb0dfb39859b7c237 (patch) | |
tree | e07d654d3c303375afbe70d7432c7f0e087317ab /drivers/media/pci/cx88/cx88-mpeg.c | |
parent | 9a373d17cc4555322a9044e5ca1ba8744ce273dd (diff) | |
download | blackbird-op-linux-3e018fe4409eae6fb36b882cb0dfb39859b7c237.tar.gz blackbird-op-linux-3e018fe4409eae6fb36b882cb0dfb39859b7c237.zip |
[media] misc drivers: 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: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/pci/cx88/cx88-mpeg.c')
-rw-r--r-- | drivers/media/pci/cx88/cx88-mpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx88/cx88-mpeg.c b/drivers/media/pci/cx88/cx88-mpeg.c index 684eff57717f..74b7b8614c23 100644 --- a/drivers/media/pci/cx88/cx88-mpeg.c +++ b/drivers/media/pci/cx88/cx88-mpeg.c @@ -499,7 +499,7 @@ static int cx8802_init_common(struct cx8802_dev *dev) /* get irq */ err = request_irq(dev->pci->irq, cx8802_irq, - IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev); + IRQF_SHARED, dev->core->name, dev); if (err < 0) { printk(KERN_ERR "%s: can't get IRQ %d\n", dev->core->name, dev->pci->irq); |