Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304220
b: refs/heads/master
c: fd11b42
h: refs/heads/master
v: v3
  • Loading branch information
Paul Gortmaker authored and Greg Kroah-Hartman committed May 8, 2012
1 parent 4b99c49 commit 207a630
Show file tree
Hide file tree
Showing 2 changed files with 3 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: abcefe5fc357440bde93f97ba1c72c3b81e2cef5
refs/heads/master: fd11b42e3598779cb25feaefb1d534a39fc35009
4 changes: 2 additions & 2 deletions trunk/drivers/tty/serial/crisv10.c
Original file line number Diff line number Diff line change
Expand Up @@ -3976,7 +3976,7 @@ block_til_ready(struct tty_struct *tty, struct file * filp,
*/
if (tty_hung_up_p(filp) ||
(info->flags & ASYNC_CLOSING)) {
wait_event_interruptible_tty(info->close_wait,
wait_event_interruptible_tty(tty, info->close_wait,
!(info->flags & ASYNC_CLOSING));
#ifdef SERIAL_DO_RESTART
if (info->flags & ASYNC_HUP_NOTIFY)
Expand Down Expand Up @@ -4115,7 +4115,7 @@ rs_open(struct tty_struct *tty, struct file * filp)
*/
if (tty_hung_up_p(filp) ||
(info->flags & ASYNC_CLOSING)) {
wait_event_interruptible_tty(info->close_wait,
wait_event_interruptible_tty(tty, info->close_wait,
!(info->flags & ASYNC_CLOSING));
#ifdef SERIAL_DO_RESTART
return ((info->flags & ASYNC_HUP_NOTIFY) ?
Expand Down

0 comments on commit 207a630

Please sign in to comment.