diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-22 16:59:16 +0800 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-10-03 15:52:22 +0000 |
commit | f8798ccbefc0e4ef7438c080b7ba0410738c8cfa (patch) | |
tree | 9133440693c02314f1f6f95629b3594ce24ad0f8 /drivers/video/s3c2410fb.c | |
parent | 261e767628bb5971b9032439818237cc8511ea94 (diff) | |
download | linux-f8798ccbefc0e4ef7438c080b7ba0410738c8cfa.tar.gz linux-f8798ccbefc0e4ef7438c080b7ba0410738c8cfa.tar.bz2 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/s3c2410fb.c')
-rw-r--r-- | drivers/video/s3c2410fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index 798144a4eedd..ee4c0df217f7 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c @@ -910,7 +910,7 @@ static int __devinit s3c24xxfb_probe(struct platform_device *pdev, for (i = 0; i < 256; i++) info->palette_buffer[i] = PALETTE_BUFF_CLEAR; - ret = request_irq(irq, s3c2410fb_irq, IRQF_DISABLED, pdev->name, info); + ret = request_irq(irq, s3c2410fb_irq, 0, pdev->name, info); if (ret) { dev_err(&pdev->dev, "cannot get irq %d - err %d\n", irq, ret); ret = -EBUSY; |