diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-13 02:16:07 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-16 15:36:10 -0400 |
commit | bb9da88d7ae2f28eafbe70b7e27721cc3f7b2d43 (patch) | |
tree | 1a7ab2a33412d947b74370c16012424817da4cd5 /drivers/misc | |
parent | b09534d3d8d85082b3c5b5803607463bd7e40194 (diff) |
misc: phantom: 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>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/phantom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/phantom.c b/drivers/misc/phantom.c index 68b7c773d2cf..30754927fd80 100644 --- a/drivers/misc/phantom.c +++ b/drivers/misc/phantom.c | |||
@@ -395,7 +395,7 @@ static int phantom_probe(struct pci_dev *pdev, | |||
395 | iowrite32(0, pht->caddr + PHN_IRQCTL); | 395 | iowrite32(0, pht->caddr + PHN_IRQCTL); |
396 | ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */ | 396 | ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */ |
397 | retval = request_irq(pdev->irq, phantom_isr, | 397 | retval = request_irq(pdev->irq, phantom_isr, |
398 | IRQF_SHARED | IRQF_DISABLED, "phantom", pht); | 398 | IRQF_SHARED, "phantom", pht); |
399 | if (retval) { | 399 | if (retval) { |
400 | dev_err(&pdev->dev, "can't establish ISR\n"); | 400 | dev_err(&pdev->dev, "can't establish ISR\n"); |
401 | goto err_unmo; | 401 | goto err_unmo; |