Commit 8dd70705 authored by Stefan Bader's avatar Stefan Bader Committed by Greg Kroah-Hartman

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: default avatarStefan Bader <stefan.bader@canonical.com>
Cc: stable <stable@kernel.org>
Cc: Alan Cox <alan@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c06d4dcf
...@@ -114,6 +114,7 @@ static struct usb_serial_driver kobil_device = { ...@@ -114,6 +114,7 @@ static struct usb_serial_driver kobil_device = {
.usb_driver = &kobil_driver, .usb_driver = &kobil_driver,
.id_table = id_table, .id_table = id_table,
.num_interrupt_in = NUM_DONT_CARE, .num_interrupt_in = NUM_DONT_CARE,
.num_interrupt_out = NUM_DONT_CARE,
.num_bulk_in = 0, .num_bulk_in = 0,
.num_bulk_out = 0, .num_bulk_out = 0,
.num_ports = 1, .num_ports = 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment