Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8dd70705c4a7a3110076da412333c90d773bbb63
Commit:     8dd70705c4a7a3110076da412333c90d773bbb63
Parent:     c06d4dcf5034ee2289a921b9b2c547f3fed2d878
Author:     Stefan Bader <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 25 08:09:41 2008 -0500
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 14:35:06 2008 -0800

    USB: Fix usb_serial_driver structure for Kobil cardreader driver.
    
    The device setup did miss to initialize the num_interrupt_out field, thus
    failing to successfully complete the probe function.
    
    Signed-off-by: Stefan Bader <[EMAIL PROTECTED]>
    Cc: stable <[EMAIL PROTECTED]>
    Cc: Alan Cox <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/serial/kobil_sct.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c
index aee4502..17b3bae 100644
--- a/drivers/usb/serial/kobil_sct.c
+++ b/drivers/usb/serial/kobil_sct.c
@@ -114,6 +114,7 @@ static struct usb_serial_driver kobil_device = {
        .usb_driver =           &kobil_driver,
        .id_table =             id_table,
        .num_interrupt_in =     NUM_DONT_CARE,
+       .num_interrupt_out =    NUM_DONT_CARE,
        .num_bulk_in =          0,
        .num_bulk_out =         0,
        .num_ports =            1,
-
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