diff options
author | Bernhard Walle <bwalle@suse.de> | 2007-05-08 03:35:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:22 -0400 |
commit | b30fabadae2b3c1a65e3662be98f105d5718db70 (patch) | |
tree | 1657c45407fe6745849bbf9b40423dbc92bb3c8e /arch/arm/mach-at91/at91rm9200_time.c | |
parent | 57501c70747fd6d7b14f7863126e5a75d29613b1 (diff) |
Add IRQF_IRQPOLL flag on arm
Add IRQF_IRQPOLL for each timer interrupt.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/mach-at91/at91rm9200_time.c')
-rw-r--r-- | arch/arm/mach-at91/at91rm9200_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91/at91rm9200_time.c b/arch/arm/mach-at91/at91rm9200_time.c index 949199a244c7..a6340357585d 100644 --- a/arch/arm/mach-at91/at91rm9200_time.c +++ b/arch/arm/mach-at91/at91rm9200_time.c | |||
@@ -87,7 +87,7 @@ static irqreturn_t at91rm9200_timer_interrupt(int irq, void *dev_id) | |||
87 | 87 | ||
88 | static struct irqaction at91rm9200_timer_irq = { | 88 | static struct irqaction at91rm9200_timer_irq = { |
89 | .name = "at91_tick", | 89 | .name = "at91_tick", |
90 | .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER, | 90 | .flags = IRQF_SHARED | IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
91 | .handler = at91rm9200_timer_interrupt | 91 | .handler = at91rm9200_timer_interrupt |
92 | }; | 92 | }; |
93 | 93 | ||