Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108779
b: refs/heads/master
c: add477d
h: refs/heads/master
i:
  108777: 0ba3804
  108775: c74c652
v: v3
  • Loading branch information
Olivier Blin authored and Jeff Garzik committed Aug 14, 2008
1 parent 87f6799 commit f131fbb
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 1595ab5d7d99bc6c9a5548ab3fb83e278eeae409
refs/heads/master: add477df674db00377d9a4dc0d9b553ce79bc06d
6 changes: 4 additions & 2 deletions trunk/drivers/net/usb/hso.c
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,8 @@ static void hso_std_serial_write_bulk_callback(struct urb *urb)
return;
}
hso_put_activity(serial->parent);
tty_wakeup(serial->tty);
if (serial->tty)
tty_wakeup(serial->tty);
hso_kick_transmit(serial);

D1(" ");
Expand Down Expand Up @@ -1538,7 +1539,8 @@ static void ctrl_callback(struct urb *urb)
clear_bit(HSO_SERIAL_FLAG_RX_SENT, &serial->flags);
} else {
hso_put_activity(serial->parent);
tty_wakeup(serial->tty);
if (serial->tty)
tty_wakeup(serial->tty);
/* response to a write command */
hso_kick_transmit(serial);
}
Expand Down

0 comments on commit f131fbb

Please sign in to comment.