diff options
author | Hans J. Koch <hjk@linutronix.de> | 2010-06-10 03:18:08 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-06 00:53:33 +0400 |
commit | 14ec5394827eea8df7bbf14775c52fc48fc97a40 (patch) | |
tree | 8ad12f55c771287a1f0e95dad23d9082fa88080b | |
parent | 62c867791f7b9feb2f6c2ca60e8a246d0c810ad9 (diff) | |
download | linux-14ec5394827eea8df7bbf14775c52fc48fc97a40.tar.xz |
uio: Remove IRQF_DISABLED flag from uio_cif.c
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>
-rw-r--r-- | drivers/uio/uio_cif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/uio/uio_cif.c b/drivers/uio/uio_cif.c index 371f87f8bc22..a8ea2f19a0cc 100644 --- a/drivers/uio/uio_cif.c +++ b/drivers/uio/uio_cif.c @@ -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)) |