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]> --- commit fc1cfd05e494252ac71a223e0cdd35cff7dd9844 tree eaca805ac95536c421feadf5a798f89c485e0628 parent e8d5617886087b5c8eee9df2c73381495672e23c author Jiri Slaby <[EMAIL PROTECTED]> Thu, 08 Feb 2007 13:08:26 +0100 committer Jiri Slaby <[EMAIL PROTECTED]> Thu, 08 Feb 2007 13:08:26 +0100 drivers/char/specialix.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index 92043c8..f1688fe 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c @@ -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); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/