serial: st-asc: Change default baudrate from 9600 to 115200
authorLee Jones <lee.jones@linaro.org>
Mon, 27 Mar 2017 14:03:40 +0000 (15:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 31 Mar 2017 13:29:05 +0000 (15:29 +0200)
9600 is old school.

Most applications use 115200 as the default baud these days.

Signed-off-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/st-asc.c

index 4889396d4c45e8f983bac348b59b59ea22c442a4..3e99bcc4eba08382ad04a8546031d4fbda30258c 100644 (file)
@@ -916,7 +916,7 @@ static void asc_console_write(struct console *co, const char *s, unsigned count)
 static int asc_console_setup(struct console *co, char *options)
 {
        struct asc_port *ascport;
-       int baud = 9600;
+       int baud = 115200;
        int bits = 8;
        int parity = 'n';
        int flow = 'n';