diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2007-02-12 00:52:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 09:48:30 -0800 |
commit | d096f3e9898d469493fc0afe88d7285c4bdc3ce2 (patch) | |
tree | 2b3387ef2333dcbfe671f05696c451417e9b6585 /drivers/char/specialix.c | |
parent | c239122dec9230af80d0914ba23fefde80fdeffe (diff) | |
download | op-kernel-dev-d096f3e9898d469493fc0afe88d7285c4bdc3ce2.zip op-kernel-dev-d096f3e9898d469493fc0afe88d7285c4bdc3ce2.tar.gz |
[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>
Diffstat (limited to 'drivers/char/specialix.c')
-rw-r--r-- | 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); |