diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-12-09 04:12:10 -0500 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-12-11 05:40:27 -0500 |
commit | 38c30a8421ce8b06492121deee422ba7ecfaeef2 (patch) | |
tree | 0d184b7247c5606e73f3f5a2fbc601646954b16c /drivers/clocksource/sh_mtu2.c | |
parent | 87d4bb9fced08054afb83af2d85f5cf0ba0e21e4 (diff) |
clocksource: misc drivers: Remove deprecated IRQF_DISABLED
This patch removes the use of the IRQF_DISABLED flag
It's a NOOP since 2.6.35 and it will be removed one day.
[dlezcano] : slightly changed the changelog
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource/sh_mtu2.c')
-rw-r--r-- | drivers/clocksource/sh_mtu2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c index f02648e27f7e..b6a56b1c8947 100644 --- a/drivers/clocksource/sh_mtu2.c +++ b/drivers/clocksource/sh_mtu2.c | |||
@@ -302,8 +302,7 @@ static int sh_mtu2_setup(struct sh_mtu2_priv *p, struct platform_device *pdev) | |||
302 | p->irqaction.handler = sh_mtu2_interrupt; | 302 | p->irqaction.handler = sh_mtu2_interrupt; |
303 | p->irqaction.dev_id = p; | 303 | p->irqaction.dev_id = p; |
304 | p->irqaction.irq = irq; | 304 | p->irqaction.irq = irq; |
305 | p->irqaction.flags = IRQF_DISABLED | IRQF_TIMER | \ | 305 | p->irqaction.flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_NOBALANCING; |
306 | IRQF_IRQPOLL | IRQF_NOBALANCING; | ||
307 | 306 | ||
308 | /* get hold of clock */ | 307 | /* get hold of clock */ |
309 | p->clk = clk_get(&p->pdev->dev, "mtu2_fck"); | 308 | p->clk = clk_get(&p->pdev->dev, "mtu2_fck"); |