Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 361279
b: refs/heads/master
c: 27b351c
h: refs/heads/master
i:
  361277: d916a11
  361275: e8a26a4
  361271: f8e9445
  361263: dcd9f78
  361247: 689fbb4
  361215: 137c05c
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Mar 13, 2013
1 parent 603ccd3 commit 69f1184
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3f8bc5e4da29c7e05edeca6b475abb4fb01a5a13
refs/heads/master: 27b351c5546008c640b3e65152f60ca74b3706f1
7 changes: 5 additions & 2 deletions trunk/drivers/usb/serial/quatech2.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,9 @@ void qt2_process_read_urb(struct urb *urb)
__func__);
break;
}
tty_flip_buffer_push(&port->port);

if (port_priv->is_open)
tty_flip_buffer_push(&port->port);

newport = *(ch + 3);

Expand Down Expand Up @@ -704,7 +706,8 @@ void qt2_process_read_urb(struct urb *urb)
tty_insert_flip_string(&port->port, ch, 1);
}

tty_flip_buffer_push(&port->port);
if (port_priv->is_open)
tty_flip_buffer_push(&port->port);
}

static void qt2_write_bulk_callback(struct urb *urb)
Expand Down

0 comments on commit 69f1184

Please sign in to comment.