All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Char: specialix, isr have 2 params
@ 2007-02-08 19:48 Jiri Slaby
  2007-02-08 19:48 ` [PATCH 2/2] Char: timers cleanup Jiri Slaby
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2007-02-08 19:48 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, R.E.Wolff

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>

---
commit fc1cfd05e494252ac71a223e0cdd35cff7dd9844
tree eaca805ac95536c421feadf5a798f89c485e0628
parent e8d5617886087b5c8eee9df2c73381495672e23c
author Jiri Slaby <jirislaby@gmail.com> Thu, 08 Feb 2007 13:08:26 +0100
committer Jiri Slaby <jirislaby@gmail.com> 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);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-02-09 20:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-08 19:48 [PATCH 1/2] Char: specialix, isr have 2 params Jiri Slaby
2007-02-08 19:48 ` [PATCH 2/2] Char: timers cleanup Jiri Slaby
2007-02-09 20:01   ` Wim Van Sebroeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.