From: Peter Hurley Date: Thu, 16 Oct 2014 20:54:24 +0000 (-0400) Subject: serial: core: Remove redundant timeout assignments X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1f0afd1607cde1a58068937f8c247fd3c58a866d;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git serial: core: Remove redundant timeout assignments tty_port_init() initializes close_delay and closing_wait to these same values; remove. Signed-off-by: Peter Hurley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index 67b2c355d32f..af1d46697e3f 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c @@ -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);