diff options
author | Alan Cox <alan@redhat.com> | 2008-07-22 06:16:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-22 16:03:26 -0400 |
commit | 4944d40054d73b2f8d7d546f55c206eb3baf2710 (patch) | |
tree | c75209b30f2f0b20262d902e4fa85c84d08c0f1a /drivers/usb/serial | |
parent | f89d0dff2507b6bd486b7db59a5f6a733fbfaa12 (diff) |
omninet: Use string flip functions
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/omninet.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index 5a76f327ef52..ae8e227f3db2 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c | |||
@@ -206,8 +206,8 @@ static void omninet_read_bulk_callback(struct urb *urb) | |||
206 | unsigned char *data = urb->transfer_buffer; | 206 | unsigned char *data = urb->transfer_buffer; |
207 | struct omninet_header *header = (struct omninet_header *) &data[0]; | 207 | struct omninet_header *header = (struct omninet_header *) &data[0]; |
208 | int status = urb->status; | 208 | int status = urb->status; |
209 | int i; | ||
210 | int result; | 209 | int result; |
210 | int i; | ||
211 | 211 | ||
212 | dbg("%s - port %d", __func__, port->number); | 212 | dbg("%s - port %d", __func__, port->number); |
213 | 213 | ||
@@ -229,9 +229,8 @@ static void omninet_read_bulk_callback(struct urb *urb) | |||
229 | } | 229 | } |
230 | 230 | ||
231 | if (urb->actual_length && header->oh_len) { | 231 | if (urb->actual_length && header->oh_len) { |
232 | for (i = 0; i < header->oh_len; i++) | 232 | tty_insert_flip_string(port->port.tty, |
233 | tty_insert_flip_char(port->port.tty, | 233 | data + OMNINET_DATAOFFSET, header->oh_len); |
234 | data[OMNINET_DATAOFFSET + i], 0); | ||
235 | tty_flip_buffer_push(port->port.tty); | 234 | tty_flip_buffer_push(port->port.tty); |
236 | } | 235 | } |
237 | 236 | ||