arm: plat-orion: remove deprecated IRQF_DISABLED

This patch proposes to remove the use of the IRQF_DISABLED flag

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
Michael Opdenacker 2013-10-12 05:49:20 +02:00 коммит произвёл Jason Cooper
Родитель 6ce4eac1f6
Коммит eb4d552b93
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,7 @@ static irqreturn_t orion_timer_interrupt(int irq, void *dev_id)
static struct irqaction orion_timer_irq = { static struct irqaction orion_timer_irq = {
.name = "orion_tick", .name = "orion_tick",
.flags = IRQF_DISABLED | IRQF_TIMER, .flags = IRQF_TIMER,
.handler = orion_timer_interrupt .handler = orion_timer_interrupt
}; };