Skip to content

Commit

Permalink
uio: Remove IRQF_DISABLED from uio_sercos3.c
Browse files Browse the repository at this point in the history
Remove IRQF_DISABLED since it is deprecated and a no-op in the
current kernel.

Signed-off-by: Hans J. Koch <hjk@linutronix.de>
Acked-by: John Ogness <john.ogness@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Hans J. Koch authored and Greg Kroah-Hartman committed Aug 5, 2010
1 parent 5685ad5 commit 62c8677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/uio/uio_sercos3.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static int __devinit sercos3_pci_probe(struct pci_dev *dev,
info->name = "Sercos_III_PCI";
info->version = "0.0.1";
info->irq = dev->irq;
info->irq_flags = IRQF_DISABLED | IRQF_SHARED;
info->irq_flags = IRQF_SHARED;
info->handler = sercos3_handler;
info->irqcontrol = sercos3_irqcontrol;

Expand Down

0 comments on commit 62c8677

Please sign in to comment.