diff options
Diffstat (limited to 'drivers/char/tty_io.c')
-rw-r--r-- | drivers/char/tty_io.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index a8cc416a23c0..82f6a8c86332 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -2094,6 +2094,8 @@ void tty_port_init(struct tty_port *port) | |||
2094 | init_waitqueue_head(&port->open_wait); | 2094 | init_waitqueue_head(&port->open_wait); |
2095 | init_waitqueue_head(&port->close_wait); | 2095 | init_waitqueue_head(&port->close_wait); |
2096 | mutex_init(&port->mutex); | 2096 | mutex_init(&port->mutex); |
2097 | port->close_delay = (50 * HZ) / 100; | ||
2098 | port->closing_wait = (3000 * HZ) / 100; | ||
2097 | } | 2099 | } |
2098 | EXPORT_SYMBOL(tty_port_init); | 2100 | EXPORT_SYMBOL(tty_port_init); |
2099 | 2101 | ||