From: Johan Hovold Date: Tue, 19 Mar 2013 08:21:08 +0000 (+0100) Subject: USB: io_ti: fix get_icount for two port adapters X-Git-Tag: v3.2.42~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06b72f0486459015c1cb24828e100df7516dd0ee;p=thirdparty%2Fkernel%2Fstable.git USB: io_ti: fix get_icount for two port adapters commit 5492bf3d5655b4954164f69c02955a7fca267611 upstream. Add missing get_icount field to two-port driver. The two-port driver was not updated when switching to the new icount interface in commit 0bca1b913aff ("tty: Convert the USB drivers to the new icount interface"). Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman Signed-off-by: Ben Hutchings --- diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index 3de751d29cbb4..1f145bfb7f41f 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c @@ -2796,6 +2796,7 @@ static struct usb_serial_driver edgeport_2port_device = { .set_termios = edge_set_termios, .tiocmget = edge_tiocmget, .tiocmset = edge_tiocmset, + .get_icount = edge_get_icount, .write = edge_write, .write_room = edge_write_room, .chars_in_buffer = edge_chars_in_buffer,