1
0

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>
Este cometimento está contido em:
Yong Zhang
2011-09-22 16:59:16 +08:00
cometido por Florian Tobias Schandinat
ascendente 261e767628
cometimento f8798ccbef
18 ficheiros modificados com 19 adições e 20 eliminações

Ver ficheiro

@@ -744,7 +744,7 @@ static int __devinit tmiofb_probe(struct platform_device *dev)
goto err_ioremap_vram;
}
retval = request_irq(irq, &tmiofb_irq, IRQF_DISABLED,
retval = request_irq(irq, &tmiofb_irq, 0,
dev_name(&dev->dev), info);
if (retval)