SH: 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> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -63,7 +63,7 @@ static int switch_drv_probe(struct platform_device *pdev)
|
||||
BUG_ON(!psw_info);
|
||||
|
||||
ret = request_irq(irq, psw_info->irq_handler,
|
||||
IRQF_DISABLED | psw_info->irq_flags,
|
||||
psw_info->irq_flags,
|
||||
psw_info->name ? psw_info->name : DRV_NAME, pdev);
|
||||
if (unlikely(ret < 0))
|
||||
goto err;
|
||||
|
Reference in New Issue
Block a user