diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-12-09 10:12:10 +0100 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-12-11 11:40:27 +0100 |
commit | 38c30a8421ce8b06492121deee422ba7ecfaeef2 (patch) | |
tree | 0d184b7247c5606e73f3f5a2fbc601646954b16c /drivers/clocksource/dw_apb_timer.c | |
parent | 87d4bb9fced08054afb83af2d85f5cf0ba0e21e4 (diff) | |
download | blackbird-op-linux-38c30a8421ce8b06492121deee422ba7ecfaeef2.tar.gz blackbird-op-linux-38c30a8421ce8b06492121deee422ba7ecfaeef2.zip |
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/dw_apb_timer.c')
-rw-r--r-- | drivers/clocksource/dw_apb_timer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clocksource/dw_apb_timer.c b/drivers/clocksource/dw_apb_timer.c index e54ca1062d8e..f3656a6b0382 100644 --- a/drivers/clocksource/dw_apb_timer.c +++ b/drivers/clocksource/dw_apb_timer.c @@ -243,8 +243,7 @@ dw_apb_clockevent_init(int cpu, const char *name, unsigned rating, dw_ced->irqaction.dev_id = &dw_ced->ced; dw_ced->irqaction.irq = irq; dw_ced->irqaction.flags = IRQF_TIMER | IRQF_IRQPOLL | - IRQF_NOBALANCING | - IRQF_DISABLED; + IRQF_NOBALANCING; dw_ced->eoi = apbt_eoi; err = setup_irq(irq, &dw_ced->irqaction); |