]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Char: specialix, isr have 2 params
authorJiri Slaby <jirislaby@gmail.com>
Mon, 12 Feb 2007 08:52:30 +0000 (00:52 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 9 Mar 2007 18:50:30 +0000 (10:50 -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 <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/char/specialix.c

index 20946f5127e0ca97b8b902fe3e22ae464722bcbf..0b3044dc1b416841d619aedfa2a438567501ccbf 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);