[PATCH] ARM: Add SA_TIMER flag to timer interrupts
VST needs to know which timer handler is for the timer interrupt. Mark all timer interrupts with the SA_TIMER flag. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
committed by
Russell King
parent
6f0dcb72d6
commit
09b8b5f843
@ -105,8 +105,8 @@ pxa_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
|
||||
|
||||
static struct irqaction pxa_timer_irq = {
|
||||
.name = "PXA Timer Tick",
|
||||
.flags = SA_INTERRUPT,
|
||||
.handler = pxa_timer_interrupt
|
||||
.flags = SA_INTERRUPT | SA_TIMER,
|
||||
.handler = pxa_timer_interrupt,
|
||||
};
|
||||
|
||||
static void __init pxa_timer_init(void)
|
||||
|
Reference in New Issue
Block a user