Commit 3f67f835 authored by Yong Zhang's avatar Yong Zhang Committed by Guenter Roeck

hwmon: (exynos4_tmu) Remove IRQF_DISABLED

Since commit [c58543c8: 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: default avatarYong Zhang <yong.zhang0@gmail.com>
Signed-off-by: default avatarGuenter Roeck <guenter.roeck@ericsson.com>
parent 9d97e5c8
...@@ -394,7 +394,7 @@ static int __devinit exynos4_tmu_probe(struct platform_device *pdev) ...@@ -394,7 +394,7 @@ static int __devinit exynos4_tmu_probe(struct platform_device *pdev)
} }
ret = request_irq(data->irq, exynos4_tmu_irq, ret = request_irq(data->irq, exynos4_tmu_irq,
IRQF_DISABLED | IRQF_TRIGGER_RISING, IRQF_TRIGGER_RISING,
"exynos4-tmu", data); "exynos4-tmu", data);
if (ret) { if (ret) {
dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq); dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment