]> err.no Git - linux-2.6/blobdiff - arch/arm/mach-lh7a40x/time.c
Clean up 'print_fn_descriptor_symbol()' types
[linux-2.6] / arch / arm / mach-lh7a40x / time.c
index ad5652e0150719e7776a81c1b90afbdea5e6142f..e50e60b33851592147f35b838665ec42be89a790 100644 (file)
 #endif
 
 static irqreturn_t
-lh7a40x_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
+lh7a40x_timer_interrupt(int irq, void *dev_id)
 {
-       write_seqlock(&xtime_lock);
-
        TIMER_EOI = 0;
-       timer_tick(regs);
-
-       write_sequnlock(&xtime_lock);
+       timer_tick();
 
        return IRQ_HANDLED;
 }
 
 static struct irqaction lh7a40x_timer_irq = {
        .name           = "LHA740x Timer Tick",
-       .flags          = IRQF_DISABLED | IRQF_TIMER,
+       .flags          = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
        .handler        = lh7a40x_timer_interrupt,
 };