diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-09-04 06:54:39 +0200 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-09-19 15:36:35 +0200 |
commit | 9ceb389dddbcdb87830f01fcf84d94b2da581dae (patch) | |
tree | 319f6437555df2822b3624a53c7469fe7796eea3 /arch/arm/mach-at91/at91x40_time.c | |
parent | e7cca2546b3bdf6545b16127113a7057e2946efa (diff) | |
download | op-kernel-dev-9ceb389dddbcdb87830f01fcf84d94b2da581dae.zip op-kernel-dev-9ceb389dddbcdb87830f01fcf84d94b2da581dae.tar.gz |
ARM: at91: remove IRQF_DISABLED
This flag is a NOOP since 2.6.36 and can be removed.
This is an update for 3.11 of a patch already sent for 3.10
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/at91x40_time.c')
-rw-r--r-- | arch/arm/mach-at91/at91x40_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91x40_time.c b/arch/arm/mach-at91/at91x40_time.c index 2919eba..c0e637a 100644 --- a/arch/arm/mach-at91/at91x40_time.c +++ b/arch/arm/mach-at91/at91x40_time.c @@ -57,7 +57,7 @@ static irqreturn_t at91x40_timer_interrupt(int irq, void *dev_id) static struct irqaction at91x40_timer_irq = { .name = "at91_tick", - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_TIMER, .handler = at91x40_timer_interrupt }; |