diff options
Diffstat (limited to 'drivers/tty/synclink_gt.c')
| -rw-r--r-- | drivers/tty/synclink_gt.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/synclink_gt.c b/drivers/tty/synclink_gt.c index aa9eece35c3..1abf946463f 100644 --- a/drivers/tty/synclink_gt.c +++ b/drivers/tty/synclink_gt.c @@ -3308,7 +3308,7 @@ static int block_til_ready(struct tty_struct *tty, struct file *filp,  	port->blocked_open++;  	while (1) { -		if ((tty->termios.c_cflag & CBAUD)) +		if (C_BAUD(tty) && test_bit(ASYNCB_INITIALIZED, &port->flags))  			tty_port_raise_dtr_rts(port);  		set_current_state(TASK_INTERRUPTIBLE);  |