diff options
Diffstat (limited to 'drivers/tty/serial/crisv10.c')
| -rw-r--r-- | drivers/tty/serial/crisv10.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/tty/serial/crisv10.c b/drivers/tty/serial/crisv10.c index 80b6b1b1f72..7264d4d2671 100644 --- a/drivers/tty/serial/crisv10.c +++ b/drivers/tty/serial/crisv10.c @@ -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) @@ -4052,9 +4052,9 @@ block_til_ready(struct tty_struct *tty, struct file * filp,  		printk("block_til_ready blocking: ttyS%d, count = %d\n",  		       info->line, info->count);  #endif -		tty_unlock(); +		tty_unlock(tty);  		schedule(); -		tty_lock(); +		tty_lock(tty);  	}  	set_current_state(TASK_RUNNING);  	remove_wait_queue(&info->open_wait, &wait); @@ -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) ?  |