diff options
author | Alan Cox <alan@redhat.com> | 2008-07-16 16:57:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-20 20:12:38 -0400 |
commit | 44b7d1b37f786c61d0e382b6f72f605f73de284b (patch) | |
tree | 2ac150e99311cde2e841bb6c80ac9d2800c8aff7 /drivers/char/tty_io.c | |
parent | 593573bc55c9e1999b9679da4e477c0220a6fbbd (diff) |
tty: add more tty_port fields
Move more bits into the tty_port structure
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
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 | ||