diff options
author | Kees Cook <keescook@chromium.org> | 2013-07-12 16:07:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-26 19:03:05 -0400 |
commit | 7d12b9769f39bec1630c6a1947e8615ce26c9a52 (patch) | |
tree | 86a9a83276fc389635b58a0c7a281a1b243f8d2d /drivers/tty/serial/serial_core.c | |
parent | 3026d14a98d50c78e74d072cb05340a0f86b3938 (diff) |
serial: report base_baud after initialization
Some serial ports will not use the standard base baud rate. Report
this after initialization so it might be discovered and used for early
console configuration.
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/serial_core.c')
-rw-r--r-- | drivers/tty/serial/serial_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index 28cdd2829139..0f02351c9239 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c | |||
@@ -2095,12 +2095,12 @@ uart_report_port(struct uart_driver *drv, struct uart_port *port) | |||
2095 | break; | 2095 | break; |
2096 | } | 2096 | } |
2097 | 2097 | ||
2098 | printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n", | 2098 | printk(KERN_INFO "%s%s%s%d at %s (irq = %d, base_baud = %d) is a %s\n", |
2099 | port->dev ? dev_name(port->dev) : "", | 2099 | port->dev ? dev_name(port->dev) : "", |
2100 | port->dev ? ": " : "", | 2100 | port->dev ? ": " : "", |
2101 | drv->dev_name, | 2101 | drv->dev_name, |
2102 | drv->tty_driver->name_base + port->line, | 2102 | drv->tty_driver->name_base + port->line, |
2103 | address, port->irq, uart_type(port)); | 2103 | address, port->irq, port->uartclk / 16, uart_type(port)); |
2104 | } | 2104 | } |
2105 | 2105 | ||
2106 | static void | 2106 | static void |