diff options
Diffstat (limited to 'drivers/tty/mxser.c')
-rw-r--r-- | drivers/tty/mxser.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c index 484b6a3c9b03..d996038eacfd 100644 --- a/drivers/tty/mxser.c +++ b/drivers/tty/mxser.c | |||
@@ -1084,6 +1084,10 @@ static void mxser_close(struct tty_struct *tty, struct file *filp) | |||
1084 | mutex_lock(&port->mutex); | 1084 | mutex_lock(&port->mutex); |
1085 | mxser_close_port(port); | 1085 | mxser_close_port(port); |
1086 | mxser_flush_buffer(tty); | 1086 | mxser_flush_buffer(tty); |
1087 | if (test_bit(ASYNCB_INITIALIZED, &port->flags)) { | ||
1088 | if (C_HUPCL(tty)) | ||
1089 | tty_port_lower_dtr_rts(port); | ||
1090 | } | ||
1087 | mxser_shutdown_port(port); | 1091 | mxser_shutdown_port(port); |
1088 | clear_bit(ASYNCB_INITIALIZED, &port->flags); | 1092 | clear_bit(ASYNCB_INITIALIZED, &port->flags); |
1089 | mutex_unlock(&port->mutex); | 1093 | mutex_unlock(&port->mutex); |