mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[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>
This commit is contained in:
parent
c239122dec
commit
d096f3e989
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue