diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-22 04:59:16 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-10-03 11:52:22 -0400 |
commit | f8798ccbefc0e4ef7438c080b7ba0410738c8cfa (patch) | |
tree | 9133440693c02314f1f6f95629b3594ce24ad0f8 /drivers/video/mb862xx | |
parent | 261e767628bb5971b9032439818237cc8511ea94 (diff) |
video: irq: Remove IRQF_DISABLED
Since commit [e58aa3d2: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).
So now this flag is a NOOP and can be removed.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Acked-by: David Brown <davidb@codeaurora.org>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/mb862xx')
-rw-r--r-- | drivers/video/mb862xx/mb862xxfbdrv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/mb862xx/mb862xxfbdrv.c b/drivers/video/mb862xx/mb862xxfbdrv.c index 7a1f2773cf38..c16ff1d62e91 100644 --- a/drivers/video/mb862xx/mb862xxfbdrv.c +++ b/drivers/video/mb862xx/mb862xxfbdrv.c | |||
@@ -737,7 +737,7 @@ static int __devinit of_platform_mb862xx_probe(struct platform_device *ofdev) | |||
737 | if (mb862xx_gdc_init(par)) | 737 | if (mb862xx_gdc_init(par)) |
738 | goto io_unmap; | 738 | goto io_unmap; |
739 | 739 | ||
740 | if (request_irq(par->irq, mb862xx_intr, IRQF_DISABLED, | 740 | if (request_irq(par->irq, mb862xx_intr, 0, |
741 | DRV_NAME, (void *)par)) { | 741 | DRV_NAME, (void *)par)) { |
742 | dev_err(dev, "Cannot request irq\n"); | 742 | dev_err(dev, "Cannot request irq\n"); |
743 | goto io_unmap; | 743 | goto io_unmap; |
@@ -1073,7 +1073,7 @@ static int __devinit mb862xx_pci_probe(struct pci_dev *pdev, | |||
1073 | if (mb862xx_pci_gdc_init(par)) | 1073 | if (mb862xx_pci_gdc_init(par)) |
1074 | goto io_unmap; | 1074 | goto io_unmap; |
1075 | 1075 | ||
1076 | if (request_irq(par->irq, mb862xx_intr, IRQF_DISABLED | IRQF_SHARED, | 1076 | if (request_irq(par->irq, mb862xx_intr, IRQF_SHARED, |
1077 | DRV_NAME, (void *)par)) { | 1077 | DRV_NAME, (void *)par)) { |
1078 | dev_err(dev, "Cannot request irq\n"); | 1078 | dev_err(dev, "Cannot request irq\n"); |
1079 | goto io_unmap; | 1079 | goto io_unmap; |