Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d096f3e9898d469493fc0afe88d7285c4bdc3ce2
Commit:     d096f3e9898d469493fc0afe88d7285c4bdc3ce2
Parent:     c239122dec9230af80d0914ba23fefde80fdeffe
Author:     Jiri Slaby <[EMAIL PROTECTED]>
AuthorDate: Mon Feb 12 00:52:30 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Feb 12 09:48:30 2007 -0800

    [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 <[EMAIL PROTECTED]>
    Cc: <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to