Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e8e30c765c5cfa5219918d3e5017fc563cf7ea03
Commit:     e8e30c765c5cfa5219918d3e5017fc563cf7ea03
Parent:     a7f3dd5d4b74030964c80fb1b7f2131986fe2d67
Author:     Oliver Neukum <[EMAIL PROTECTED]>
AuthorDate: Wed Mar 14 11:11:08 2007 +0100
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Mon Mar 19 13:22:18 2007 -0700

    USB: necessary update for mos7720 driver
    
    these devices have a shared interrupt endpoint. For serialcore to pass
    an interrupt endpoint to a subdriver, the subdriver must define and
    _export_ a fitting callback. The mos7720 driver failed to do so. This led
    invariably to an oops upon open. This patch fixes it. The driver is useless
    without it. Please try to get this into 2.6.21 and the stable kernels that
    have this driver.
    
    Signed-off-by: Oliver Neukum <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/serial/mos7720.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/serial/mos7720.c b/drivers/usb/serial/mos7720.c
index 2d588fb..19bf403 100644
--- a/drivers/usb/serial/mos7720.c
+++ b/drivers/usb/serial/mos7720.c
@@ -1628,6 +1628,7 @@ static struct usb_serial_driver moschip7720_2port_driver 
= {
        .chars_in_buffer        = mos7720_chars_in_buffer,
        .break_ctl              = mos7720_break,
        .read_bulk_callback     = mos7720_bulk_in_callback,
+       .read_int_callback      = mos7720_interrupt_callback,
 };
 
 static int __init moschip7720_init(void)
-
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