[PATCH] Char: specialix, isr have 2 params
authorJiri Slaby <[email protected]>
Mon, 12 Feb 2007 08:52:30 +0000 (00:52 -0800)
committerLinus Torvalds <[email protected]>
Mon, 12 Feb 2007 17:48:30 +0000 (09:48 -0800)
specialix, isr have 2 params

pt_regs are no longer the third parameter of isr, call sx_interrupt without
it.

Signed-off-by: Jiri Slaby <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/char/specialix.c

index 92043c8f23554137d3f6c0a1c7c750049a12030e..f1688fe81ac7b6187b66455be492315043131876 100644 (file)
@@ -459,7 +459,7 @@ void missed_irq (unsigned long data)
        if (irq) {
                printk (KERN_INFO "Missed interrupt... Calling int from timer. \n");
                sx_interrupt (((struct specialix_board *)data)->irq,
-                             (void*)data, NULL);
+                               (void*)data);
        }
        missed_irq_timer.expires = jiffies + sx_poll;
        add_timer (&missed_irq_timer);