]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
serial: 8250: Initialize fixed type fields when setting defaults
authorPeter Hurley <peter@hurleysoftware.com>
Tue, 24 Feb 2015 19:25:10 +0000 (14:25 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Mar 2015 17:17:36 +0000 (18:17 +0100)
commitafd483bd0f6808d7a8891349b8a141d7abd0509d
tree9d2bef7e7ae4be80c521dda1e286bf702677d9ea
parent1a53e07989733d72354eb9617f49377ff30588a8
serial: 8250: Initialize fixed type fields when setting defaults

Prepare for 8250 split; move fixed type initialization into
serial8250_set_defaults(). This enables uart_config[] array to remain
file scope in base port operations after the split.

NB: the call to serial8250_init_fixed_type_port() from
serial8250_register_ports() was added by commit b5d228cc4f85
("serial: copy UART properties of UPF_FIXED_TYPE ports provisioned
using early_serial_setup") specifically to support ports initialized
by early_serial_setup(). Since serial8250_set_defaults() is called
from early_serial_setup(), fixed type initialization is now already
handled there before serial8250_register_ports() is called.

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