Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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 <jirislaby@gmail.com>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jiri Slaby and committed by
Linus Torvalds
d096f3e9 c239122d

+1 -1
+1 -1
drivers/char/specialix.c
··· 459 459 if (irq) { 460 460 printk (KERN_INFO "Missed interrupt... Calling int from timer. \n"); 461 461 sx_interrupt (((struct specialix_board *)data)->irq, 462 - (void*)data, NULL); 462 + (void*)data); 463 463 } 464 464 missed_irq_timer.expires = jiffies + sx_poll; 465 465 add_timer (&missed_irq_timer);