From: Jiri Slaby Date: Mon, 12 Feb 2007 08:52:30 +0000 (-0800) Subject: [PATCH] Char: specialix, isr have 2 params X-Git-Tag: v2.6.21-rc1~91^2~180 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=d096f3e9898d469493fc0afe88d7285c4bdc3ce2;p=powerpc.git [PATCH] Char: specialix, isr have 2 params 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 Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index 92043c8f23..f1688fe81a 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);