serial: core: Remove redundant timeout assignments
authorPeter Hurley <peter@hurleysoftware.com>
Thu, 16 Oct 2014 20:54:24 +0000 (16:54 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Nov 2014 02:53:55 +0000 (18:53 -0800)
tty_port_init() initializes close_delay and closing_wait to these
same values; remove.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/serial_core.c

index 67b2c35..af1d466 100644 (file)
@@ -2342,8 +2342,6 @@ int uart_register_driver(struct uart_driver *drv)
 
                tty_port_init(port);
                port->ops = &uart_port_ops;
-               port->close_delay     = HZ / 2; /* .5 seconds */
-               port->closing_wait    = 30 * HZ;/* 30 seconds */
        }
 
        retval = tty_register_driver(normal);