From: Yong Zhang Date: Wed, 21 Sep 2011 09:28:57 +0000 (-0400) Subject: hwmon: (exynos4_tmu) Remove IRQF_DISABLED X-Git-Tag: upstream/snapshot3+hdmi~8931^2~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f67f83525d43220e4ea2eb9abee141a4ff97fe7;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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: Yong Zhang Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/exynos4_tmu.c b/drivers/hwmon/exynos4_tmu.c index 0170c90..faa0884 100644 --- a/drivers/hwmon/exynos4_tmu.c +++ b/drivers/hwmon/exynos4_tmu.c @@ -394,7 +394,7 @@ static int __devinit exynos4_tmu_probe(struct platform_device *pdev) } ret = request_irq(data->irq, exynos4_tmu_irq, - IRQF_DISABLED | IRQF_TRIGGER_RISING, + IRQF_TRIGGER_RISING, "exynos4-tmu", data); if (ret) { dev_err(&pdev->dev, "Failed to request irq: %d\n", data->irq);