aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/sh_mobile_lcdcfb.c
diff options
context:
space:
mode:
authorYong Zhang <yong.zhang0@gmail.com>2011-09-22 04:59:16 -0400
committerFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>2011-10-03 11:52:22 -0400
commitf8798ccbefc0e4ef7438c080b7ba0410738c8cfa (patch)
tree9133440693c02314f1f6f95629b3594ce24ad0f8 /drivers/video/sh_mobile_lcdcfb.c
parent261e767628bb5971b9032439818237cc8511ea94 (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/sh_mobile_lcdcfb.c')
-rw-r--r--drivers/video/sh_mobile_lcdcfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c
index 97ab8bac2494..3a41c013d031 100644
--- a/drivers/video/sh_mobile_lcdcfb.c
+++ b/drivers/video/sh_mobile_lcdcfb.c
@@ -1576,7 +1576,7 @@ static int __devinit sh_mobile_lcdc_probe(struct platform_device *pdev)
1576 1576
1577 platform_set_drvdata(pdev, priv); 1577 platform_set_drvdata(pdev, priv);
1578 1578
1579 error = request_irq(i, sh_mobile_lcdc_irq, IRQF_DISABLED, 1579 error = request_irq(i, sh_mobile_lcdc_irq, 0,
1580 dev_name(&pdev->dev), priv); 1580 dev_name(&pdev->dev), priv);
1581 if (error) { 1581 if (error) {
1582 dev_err(&pdev->dev, "unable to request irq\n"); 1582 dev_err(&pdev->dev, "unable to request irq\n");