Skip to content

Commit

Permalink
[media] tw68: remove deprecated IRQF_DISABLED
Browse files Browse the repository at this point in the history
See include/linux/interrupt.h:
"This flag is a NOOP and scheduled to be removed"

Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Fabian Frederick authored and mchehab committed Oct 24, 2014
1 parent 4961a53 commit a4789e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/pci/tw68/tw68-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ static int tw68_initdev(struct pci_dev *pci_dev,

/* get irq */
err = devm_request_irq(&pci_dev->dev, pci_dev->irq, tw68_irq,
IRQF_SHARED | IRQF_DISABLED, dev->name, dev);
IRQF_SHARED, dev->name, dev);
if (err < 0) {
pr_err("%s: can't get IRQ %d\n",
dev->name, pci_dev->irq);
Expand Down

0 comments on commit a4789e6

Please sign in to comment.