diff options
Diffstat (limited to 'drivers/usb/serial/mct_u232.c')
-rw-r--r-- | drivers/usb/serial/mct_u232.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/serial/mct_u232.c b/drivers/usb/serial/mct_u232.c index 7a804d6b3a4c..0ded8bd6ec85 100644 --- a/drivers/usb/serial/mct_u232.c +++ b/drivers/usb/serial/mct_u232.c | |||
@@ -563,11 +563,9 @@ static void mct_u232_read_int_callback(struct urb *urb) | |||
563 | * Work-a-round: handle the 'usual' bulk-in pipe here | 563 | * Work-a-round: handle the 'usual' bulk-in pipe here |
564 | */ | 564 | */ |
565 | if (urb->transfer_buffer_length > 2) { | 565 | if (urb->transfer_buffer_length > 2) { |
566 | int i; | ||
567 | tty = port->port.tty; | 566 | tty = port->port.tty; |
568 | if (urb->actual_length) { | 567 | if (urb->actual_length) { |
569 | for (i = 0; i < urb->actual_length ; ++i) | 568 | tty_insert_flip_string(tty, data, urb->actual_length); |
570 | tty_insert_flip_char(tty, data[i], 0); | ||
571 | tty_flip_buffer_push(tty); | 569 | tty_flip_buffer_push(tty); |
572 | } | 570 | } |
573 | goto exit; | 571 | goto exit; |