Skip to content

Commit

Permalink
uio: Remove IRQF_DISABLED flag from uio_cif.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>
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 62c8677 commit 14ec539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/uio/uio_cif.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static int __devinit hilscher_pci_probe(struct pci_dev *dev,
}
info->version = "0.0.1";
info->irq = dev->irq;
info->irq_flags = IRQF_DISABLED | IRQF_SHARED;
info->irq_flags = IRQF_SHARED;
info->handler = hilscher_handler;

if (uio_register_device(&dev->dev, info))
Expand Down

0 comments on commit 14ec539

Please sign in to comment.