Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7155530d authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Hans-Christian Egtvedt
Browse files

avr32: 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: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Acked-by: default avatarHans-Christian Egtvedt <egtvedt@samfundet.no>
parent fa1513f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
static struct irqaction timer_irqaction = {
	.handler	= timer_interrupt,
	/* Oprofile uses the same irq as the timer, so allow it to be shared */
	.flags		= IRQF_TIMER | IRQF_DISABLED | IRQF_SHARED,
	.flags		= IRQF_TIMER | IRQF_SHARED,
	.name		= "avr32_comparator",
};