diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2009-10-10 23:26:35 +0800 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-11-02 12:00:02 +0100 |
commit | c49e38c1a5e1c814f07365e7a5773801e20e26b5 (patch) | |
tree | d27f7a5f40b8baf98fed5a41d2388b9c6c1f9ce5 /arch/mips/kernel/cevt-ds1287.c | |
parent | 80b8585b07feede94a742c4cdb80ab607a8813b3 (diff) | |
download | talos-obmc-linux-c49e38c1a5e1c814f07365e7a5773801e20e26b5.tar.gz talos-obmc-linux-c49e38c1a5e1c814f07365e7a5773801e20e26b5.zip |
MIPS: Add IRQF_TIMER flag for timer interrupts
As the commit 3ee4c147 shows, we need to "Add IRQF_TIMER flag for timer
interrupts", Atsushi Nemoto have reported that some other timer interrupts
should be considered, Here it is.
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cevt-ds1287.c')
-rw-r--r-- | arch/mips/kernel/cevt-ds1287.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/cevt-ds1287.c b/arch/mips/kernel/cevt-ds1287.c index 6996da4d74a2..00a4da277cbb 100644 --- a/arch/mips/kernel/cevt-ds1287.c +++ b/arch/mips/kernel/cevt-ds1287.c @@ -107,7 +107,7 @@ static irqreturn_t ds1287_interrupt(int irq, void *dev_id) static struct irqaction ds1287_irqaction = { .handler = ds1287_interrupt, - .flags = IRQF_DISABLED | IRQF_PERCPU, + .flags = IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, .name = "ds1287", }; |