summaryrefslogtreecommitdiffstats
path: root/drivers/video/pxa3xx-gcu.c
diff options
context:
space:
mode:
authorYong Zhang2011-09-22 10:59:16 +0200
committerFlorian Tobias Schandinat2011-10-03 17:52:22 +0200
commitf8798ccbefc0e4ef7438c080b7ba0410738c8cfa (patch)
tree9133440693c02314f1f6f95629b3594ce24ad0f8 /drivers/video/pxa3xx-gcu.c
parentsmscufx: change edid data to u8 instead of char (diff)
downloadkernel-qcow2-linux-f8798ccbefc0e4ef7438c080b7ba0410738c8cfa.tar.gz
kernel-qcow2-linux-f8798ccbefc0e4ef7438c080b7ba0410738c8cfa.tar.xz
kernel-qcow2-linux-f8798ccbefc0e4ef7438c080b7ba0410738c8cfa.zip
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/pxa3xx-gcu.c')
-rw-r--r--drivers/video/pxa3xx-gcu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/pxa3xx-gcu.c b/drivers/video/pxa3xx-gcu.c
index d8de5577d3cf..1ed8b366618d 100644
--- a/drivers/video/pxa3xx-gcu.c
+++ b/drivers/video/pxa3xx-gcu.c
@@ -676,7 +676,7 @@ pxa3xx_gcu_probe(struct platform_device *dev)
}
ret = request_irq(irq, pxa3xx_gcu_handle_irq,
- IRQF_DISABLED, DRV_NAME, priv);
+ 0, DRV_NAME, priv);
if (ret) {
dev_err(&dev->dev, "request_irq failed\n");
ret = -EBUSY;