diff options
author | Boris BREZILLON <b.brezillon@overkiz.com> | 2013-10-02 08:35:48 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-10-03 10:28:40 -0400 |
commit | f51380a75652a4600b34ce384c4ff89ce0a15132 (patch) | |
tree | db73f27f35f07f3da14595317b2b5315860bda83 /drivers | |
parent | 5b3c11da141c27df6f8dd8acf90c0046ebab3a07 (diff) |
clocksource: tcb_clksrc: Remove IRQF_DISABLED
Remove the deprecated IRQF_DISABLED flag.
Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clocksource/tcb_clksrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c index 10a5d9ef23f5..00fdd1170284 100644 --- a/drivers/clocksource/tcb_clksrc.c +++ b/drivers/clocksource/tcb_clksrc.c | |||
@@ -180,7 +180,7 @@ static irqreturn_t ch2_irq(int irq, void *handle) | |||
180 | 180 | ||
181 | static struct irqaction tc_irqaction = { | 181 | static struct irqaction tc_irqaction = { |
182 | .name = "tc_clkevt", | 182 | .name = "tc_clkevt", |
183 | .flags = IRQF_TIMER | IRQF_DISABLED, | 183 | .flags = IRQF_TIMER, |
184 | .handler = ch2_irq, | 184 | .handler = ch2_irq, |
185 | }; | 185 | }; |
186 | 186 | ||